Represents a single country instance.
https://app.jobcast.net/api/v1.0/countries/{id}
| Property | Type | Description |
|---|---|---|
| id | Int32 | Unique identifier of the country. |
| name | String (max 255) | Human readable name for the country. |
Authentication: Not Required
https://app.jobcast.net/api/v1.0/countries/42
{
"data":{
"id":42,
"name":"Canada"
},
"warnings":[]
}
Not supported.
Represents the complete list of countries in the system.
https://app.jobcast.net/api/v1.0/countries
Authentication: Not Required
https://app.jobcast.net/api/v1.0/countries
{
"data":[
{"id":2,"name":"Afghanistan"},
{"id":3,"name":"Ă…land Islands"},
{"id":4,"name":"Albania"},
...
{"id":256,"name":"Zimbabwe"}
],
"warnings":[]
}