GET /jobTypes

Retrieve all job types, including custom options for a given company.

Query parameters

  • companyID integer Required

Responses

  • 200 application/json

    List of job types

    Hide response attributes Show response attributes object
    • jobTypeID integer
    • name string
    • description string
  • 500

    Error occurred while retrieving job types

GET /jobTypes
curl \
 -X GET http://api.example.com/jobTypes?companyID=42
Response examples (200)
[
  {
    "jobTypeID": 42,
    "name": "string",
    "description": "string"
  }
]