Represents a single job category instance.
https://www.newbrunswickjobs.ca/api/v1.1/jobcategories/{id}
| Property | Type | Description |
|---|---|---|
| id | Int32 | Unique identifier of the job category. |
| name | String (max 40) | Human readable name for the job category. |
Authentication: Not Required
https://www.newbrunswickjobs.ca/api/v1.1/jobcategories/1
{
"id":1,
"name":"Accounting"
}
Not supported.
Represents a list of job categories.
https://www.newbrunswickjobs.ca/api/v1.1/jobcategories
Authentication: Not Required
https://www.newbrunswickjobs.ca/api/v1.1/jobcategories
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"}
]
}