Countries

Country Instance

Represents a single country instance.

URI

https://app.jobcast.net/api/v1.0/countries/{id}

Properties

Property Type Description
id Int32 Unique identifier of the country.
name String (max 255) Human readable name for the country.

HTTP GET

Authentication: Not Required

Example

https://app.jobcast.net/api/v1.0/countries/42

{
    "data":{
        "id":42,
        "name":"Canada"
    },
    "warnings":[]
}
    

HTTP POST, PUT, and DELETE

Not supported.

Counties List

Represents the complete list of countries in the system.

URI

https://app.jobcast.net/api/v1.0/countries

HTTP GET

Authentication: Not Required

Example

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":[]
}