GET /jobs/{jobID}

Retrieve a job by its ID.

Path parameters

  • jobID integer Required

Responses

  • 200 application/json

    Job details

    Hide response attributes Show response attributes object
    • jobID integer
    • jobTitle string
    • jobDescription string
    • scheduleLater boolean
    • Rrule string
    • companyID integer
    • propertyID integer
    • jobStatusID integer
    • clientID integer
    • jobTypeID integer
    • createdBy integer
    • updatedBy integer
  • 404

    Job not found

  • 500

    Error occurred while retrieving job

GET /jobs/{jobID}
curl \
 -X GET http://api.example.com/jobs/{jobID}
Response examples (200)
{
  "jobID": 42,
  "jobTitle": "string",
  "jobDescription": "string",
  "scheduleLater": true,
  "Rrule": "string",
  "companyID": 42,
  "propertyID": 42,
  "jobStatusID": 42,
  "clientID": 42,
  "jobTypeID": 42,
  "createdBy": 42,
  "updatedBy": 42
}