GET /jobTypes/{jobTypeID}

Retrieve a job type by its ID.

Path parameters

  • jobTypeID integer Required

Query parameters

  • companyID integer Required

Responses

  • 200 application/json

    Job type details

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

    Job type not found

  • 500

    Error occurred while retrieving the job type

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