v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
Job Interview Plan

jobInterviewPlan.info

Returns a job's interview plan, including activities and interviews that need to be scheduled at each stage.

Requires the jobsRead permission.

post/jobInterviewPlan.info

Request body

jobIdstring uuid required

The id of the job to fetch an interview plan for

Example request

{
  "jobId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e"
}

Response

Responses from the jobInterviewPlan.info endpoint

OR

Example response

{
  "success": true,
  "results": {
    "jobId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
    "interviewPlanId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "stages": [
      {
        "id": "8d4f4ef3-1b59-4f8b-bd23-69d4e2dc8af8",
        "title": "Recruiter Phone Screen",
        "type": "Active",
        "orderInInterviewPlan": 4,
        "activities": [
          {
            "id": "f1c1b9b7-bf95-4f2a-bbf4-2c7d3b8e1aaa",
            "title": "Interview stage template",
            "interviews": [
              {
                "id": "9bcec74e-2c1a-4ad1-8cda-f5b9a4f12bb2",
                "title": "Recruiter Phone Call",
                "interviewId": "f44eecb7-7a73-4cf4-a3ba-1f8da9d2d8e1",
                "interviewDurationMinutes": 60,
                "isSchedulable": true
              }
            ]
          }
        ]
      }
    ]
  }
}