Job Types

Job Type Instance

Represents a single job type instance.

URI

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

Properties

Property Type Description
id Int32 Unique identifier of the job type.
name String (max 50) Human readable name for the job type.

HTTP GET

Authentication: Not Required

Example

https://app.jobcast.net/api/v1.0/jobtypes/1

{
    "data":{
        "id":1,
        "name":"Full-time"
    },
    "warnings":[]
}
    

HTTP POST, PUT, and DELETE

Not supported.

Job Types List

Represents the complete list of job types in the system.

URI

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

HTTP GET

Authentication: Not Required

Example

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

{
    "data":[
        {"id":1,"name":"Full-time"},
        {"id":2,"name":"Part-time"},
        {"id":3,"name":"Contract"},
        {"id":4,"name":"Temporary"}
    ],
    "warnings":[]
}