v1

latestOpenAPI 3.1.02026-07-224239180.9 KB
Job

Get a job

Returns one job with its resolved scheduling settings and job-stage information. The job must belong to the authenticated organization or the request returns not found.

get/v1/jobs/{jobId}

Path parameters

jobIdstring required

a job ID. Accepts the canonical prefixed compact UUID, a prefixed dashed UUID, a bare dashed UUID, or a bare compact UUID; input is case-insensitive.

Example:job_a1b2c3d4e5f64789a1b2c3d4e5f64789

Response

Success

idstring required

Canonical job ID (job_ followed by 32 lowercase hexadecimal UUID characters).

namestring required
status'DRAFT' | 'OPEN' | 'CLOSED' required
confidentialboolean required
locationsstring[] required
created_atstring date-time required

ISO 8601 timestamp.

updated_atstring date-time required

ISO 8601 timestamp.

Example response

{
  "id": "job_a1b2c3d4e5f64789a1b2c3d4e5f64789",
  "hiring_team": [
    {
      "employee": {
        "id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789"
      }
    }
  ],
  "settings": {
    "default_task_queue_id": "que_a1b2c3d4e5f64789a1b2c3d4e5f64789"
  }
}