Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- Webhooks
Webhooks
- Overview
- Verify Webhook Signatures
- Webhook retries
- Events
- job.created
- job.updated
- job.status.updated
- job.deleted
- application.created
- application.stage.updated
- application.deleted
- candidate.updated
- candidate.note.created
- candidate.note.updated
- candidate.note.deleted
- candidate.tag.added
- candidate.tag.removed
- feedback.requested
- feedback.submitted
- feedback.updated
- interview.created
- interview.updated
- interview.cancelled
Events
interview.created
Occurs when an interview is created
The schema is of type object
.
Was this page helpful?
{
"id": "<string>",
"version": 123,
"type": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"data": {
"object": {
"id": "<string>",
"candidate_id": "<string>",
"application_id": "<string>",
"job_id": "<string>",
"event": {
"title": "<string>",
"location": "<string>",
"type": "phone",
"status": "active",
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"time_zone": "<string>",
"organizer_id": "<string>",
"attendees": [
{
"id": "<string>",
"application_id": "<string>",
"user_id": "<string>",
"type": "user",
"status": "accepted",
"display_name": "<string>",
"email": "<string>"
}
]
},
"meta": {
"note_for_candidate": "<string>",
"note_for_attendees": "<string>",
"attach_resume_to_invite": true,
"online_meeting_type": "hangouts_meet",
"meeting_url": "<string>"
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.