v1

latestOpenAPI 3.1.02026-07-224239180.9 KB
Interviewer

Get an interviewer

Returns an interviewer profile with load limits, pause state, work hours, attributes, and interview-module memberships. The interviewer must belong to the authenticated organization or the request returns not found.

get/v1/interviewers/{interviewerId}

Path parameters

interviewerIdstring required

an employee 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:emp_a1b2c3d4e5f64789a1b2c3d4e5f64789

Response

Success

idstring required

Canonical employee ID (emp_ followed by 32 lowercase hexadecimal UUID characters).

namestring required
emailstring email required
titlestring nullable required
timezonestring nullable required
manager_idstring nullable required

Canonical employee ID (emp_ followed by 32 lowercase hexadecimal UUID characters).

created_atstring date-time required

ISO 8601 timestamp.

updated_atstring date-time required

ISO 8601 timestamp.

Example response

{
  "id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789",
  "manager_id": "emp_a1b2c3d4e5f64789a1b2c3d4e5f64789",
  "attributes": [
    {
      "attribute_name": {
        "id": "att_a1b2c3d4e5f64789a1b2c3d4e5f64789"
      },
      "values": [
        {
          "id": "atv_a1b2c3d4e5f64789a1b2c3d4e5f64789"
        }
      ]
    }
  ],
  "modules": [
    {
      "module": {
        "id": "mod_a1b2c3d4e5f64789a1b2c3d4e5f64789"
      }
    }
  ]
}