Create an Interview
Overview
This action allows you to create an interview and send an invitation to an applicant.
Action Type
create_interview
Required Data
app_idThe id of the applicant who will be interviewed.emailThe admin user’s email. The interview will be sent from the calendar of this user.durationLength of interview in minutes.locationLocation of interview. Either a physical address or “Remote” for an online Interview.minimum_noticeMinimum notice for which an applicant can schedule in interview in minutes.available_days_lengthAmount of calendar days available for the applicant to schedule the interview.add_conferencingBooleantruefor an online interview orfalsefor an in-person interview. The admin user’s default conferencing profile will be used if set totrue.
Optional Data
additional_attendee_emailsAn array of additional admin user emails who will attend the interview.
Example Request Payload
{
"type": "create_interview",
"data": {
"app_id": 3640,
"email": "[email protected]",
"additional_attendee_emails": ["[email protected]"],
"duration": 30,
"location": "Remote",
"minimum_notice": 1440,
"available_days_length": 30,
"add_conferencing": true
}
}Usage
Upon execution of the action, the applicant will receive an invitation to either schedule an online interview on the admin user's connected calendar, or to an in-person interview.
Updated 6 months ago
