v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
Interview Stage

interviewStage.list

List all interview stages for an interview plan in order.

Requires the interviewsRead permission.

post/interviewStage.list

Request body

interviewPlanIdstring uuid required

The id of the interview plan to list stages for

Example request

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

Response

Responses from the interviewStage.list endpoint

OR

Example response

{
  "success": true,
  "results": [
    {
      "id": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
      "title": "Technical Interview",
      "type": "Active",
      "interviewPlanId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "orderInInterviewPlan": 0,
      "interviewStageGroupId": null
    }
  ],
  "moreDataAvailable": false
}