v1

latestOpenAPI 3.1.02026-07-24181585937.4 KB
Interviewer Pool

interviewerPool.addUser

Add a user to an interviewer pool.

Requires the hiringProcessMetadataWrite permission.

post/interviewerPool.addUser

Request body

interviewerPoolIdstring uuid required

The id of the interviewer pool

userIdstring uuid required

The id of the user to add to the interviewer pool

interviewerPoolTrainingPathStageIdstring uuid nullable

The id of the training path stage to add the user to. If this is not provided, the user will be added as a fully qualified member of the pool.

Example request

{
  "interviewerPoolId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
  "userId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e",
  "interviewerPoolTrainingPathStageId": "e9ed20fd-d45f-4aad-8a00-a19bfba0083e"
}

Response

Responses from the interviewerPool.addUser endpoint

OR

Example response

{
  "success": true,
  "results": {
    "id": "2d8bb563-9ca2-47cd-a41c-d82dc0688508",
    "title": "Zod Create QA 2026-04-24 0035",
    "isArchived": false,
    "trainingPath": {
      "id": "99a059b6-121b-4e91-877d-720d4a12585a",
      "enabled": true,
      "trainingStages": [
        {
          "id": "8182b3d8-e224-4c4f-8827-ed96cd860878",
          "interviewerRole": "Shadow",
          "interviewsRequired": 1,
          "isArchived": false,
          "approvalRequired": false,
          "approvers": null
        },
        {
          "id": "037b5ae3-8901-4380-99f7-ac403d494d7f",
          "interviewerRole": "ReverseShadow",
          "interviewsRequired": 1,
          "isArchived": false,
          "approvalRequired": false,
          "approvers": null
        }
      ]
    }
  }
}