GET api/Employment/GetPreferedEmployers/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Employers| Name | Description | Type | Additional information |
|---|---|---|---|
| preferredEmployerId | integer |
None. |
|
| description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"preferredEmployerId": 1,
"description": "sample string 1"
},
{
"preferredEmployerId": 1,
"description": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployers xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Employers>
<preferredEmployerId>1</preferredEmployerId>
<description>sample string 1</description>
</Employers>
<Employers>
<preferredEmployerId>1</preferredEmployerId>
<description>sample string 1</description>
</Employers>
</ArrayOfEmployers>