v1

latestOpenAPI 3.0.12026-07-24285462499.1 KB
job-level-interview-templates

Finds job level interview templates by job application id

Finds job level interview templates that suppose to be used for interview / group interview scheduling. Finds by job application UUID.

get/job-templates/job-applications/{applicationId}

Path parameters

applicationIdstring uuid required

application id

Response

Job level interview templates found

idstring uuid

Unique identifier for the interview blueprint

companyIdstring

Company identifier associated with the job interview blueprint

jobIdstring uuid

Job identifier associated with the interview blueprint

hiringStagestring

Hiring stage of the interview blueprint

hiringStepstring

Hiring step of the interview blueprint

templateIdstring uuid

Unique identifier for the template used in the interview blueprint

templateType'INDIVIDUAL' | 'GROUP'

Type of the interview template, indicating whether it is internal or external

templateNamestring

Name of the interview template

privateInterviewboolean

Indicates whether the interview is private or not

hiringTeamRoleToInterviewersobject

Map of hiring team roles to their respective interviewers

hiringTeamRoleToInterviewerCountobject

Map of hiring team roles to the count of interviewers assigned to each role

Example response

{
  "invitations": [
    {
      "email": {
        "subject": "Interview invitation",
        "content": "You have been invited for an interview"
      },
      "sms": {
        "content": "You have been invited for an interview",
        "confirmationMessage": "Thanks for the confirmation"
      },
      "whatsApp": {
        "enabled": true
      },
      "language": "en",
      "repeat": {
        "intervalInMinutes": 1440,
        "count": 2
      }
    }
  ],
  "reminders": [
    {
      "message": {
        "subject": "Upcoming interview reminder",
        "content": "Hello, we would like to remind you about upcoming interview."
      },
      "language": "en"
    }
  ]
}