GET api/v1/portals/{portalUid}/jobs/countryregionlocations?notSetValue={notSetValue}
Gets a list of the published jobs country region locations.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| portalUid |
The portal UID. |
globally unique identifier |
Required |
| notSetValue |
The value used to describe returned NULL values. |
string |
Default value is -NOT SET- |
Body Parameters
None.
Response Information
Resource Description
Returns country region locations.
Collection of CountryRegionLocationViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Country |
The country. |
string |
None. |
| Region |
The region. |
string |
None. |
| Location |
The location. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Country": "sample string 1",
"Region": "sample string 2",
"Location": "sample string 3"
},
{
"Country": "sample string 1",
"Region": "sample string 2",
"Location": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfCountryRegionLocationViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eclipse.WebApi.Common.ViewModels">
<CountryRegionLocationViewModel>
<Country>sample string 1</Country>
<Location>sample string 3</Location>
<Region>sample string 2</Region>
</CountryRegionLocationViewModel>
<CountryRegionLocationViewModel>
<Country>sample string 1</Country>
<Location>sample string 3</Location>
<Region>sample string 2</Region>
</CountryRegionLocationViewModel>
</ArrayOfCountryRegionLocationViewModel>