Job Categories

Job Category Instance

Represents a single job category instance.

URI

https://www.onjobcentre.ca/api/v1.1/jobcategories/{id}

Properties

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

HTTP GET

Authentication: Not Required

Example

Request

https://www.onjobcentre.ca/api/v1.1/jobcategories/1

Response
{
    "id":1,
    "name":"Accounting"
}
    

HTTP POST, PUT, and DELETE

Not supported.

Job Categories List

Represents a list of job categories.

URI

https://www.onjobcentre.ca/api/v1.1/jobcategories

HTTP GET

Authentication: Not Required

Example

Request

https://www.onjobcentre.ca/api/v1.1/jobcategories

Response
HTTP/1.1 200 OK
Content-Length: 1843
Content-Type: application/json

{
    "data":[
        {"id":1,"name":"Accounting-Auditing"},
        {"id":2,"name":"Administrative and Support"},
        ...
        {"id":42,"name":"Transportation-Warehousing"}
    ]
}