Create an interview
Interviews
POST create an interview
Endpoint
POST /api/v1/interviews/
Parameters
| Name | Description |
|---|---|
| interview[kind] required | Interview kind |
| interview[start_at] required | Interview start at |
| interview[end_at] required | Interview end at |
| interview[interviewee_id] required | Interview interviewee |
| interview[interviewer_id] required | Interview interviewer |
| interview[location] | Interview location |
Request
Route
POST /api/v1/interviews/
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI5NzUiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NjA5NTA0NTUsImV4cCI6MTc2MzU0MjQ1NSwianRpIjoiYTBiYzg3NzgtYzMxNC00MmJkLTlmM2EtMDA0Y2UxMWJhZmQyIn0.slJAF81CdjJiH_eVCG5ZcfM5_w8A3I1n2rxJ9HpBaeE
Host: example.org
Cookie:
Body
{
"interview": {
"interviewee_id": 270,
"interviewer_id": 974,
"kind": "video_call",
"location": "https://zoom.com",
"start_at": "2025-10-20T08:54:15Z",
"end_at": "2025-10-20T09:24:15Z"
}
}
Response
Simulated Response
Status
200
Headers
x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"ef5f69daa794ff904bbe565bf6f03fcc"
cache-control: max-age=0, private, must-revalidate
x-request-id: 39c4bddb-45d5-4560-9e13-a5a5c6cde0bd
x-runtime: 0.037841
content-length: 542
Body
{
"interview": {
"id": 26,
"amend_end_at": null,
"amend_start_at": null,
"amended_by": null,
"end_at": "2025-10-20T09:24:15.000Z",
"interviewee": {
"id": 270,
"currency": "GBP",
"driver": {
"id": 972,
"image": null,
"phone_number": "123",
"title": "Bryant Zboncak"
},
"kind": "interview",
"updated_at": "2025-10-20T08:54:15.141Z"
},
"interviewee_id": 270,
"interviewer": {
"id": 974,
"contact_phone_number": null,
"image": null,
"title": "Carlos McLaughlin"
},
"interviewer_id": 974,
"kind": "video_call",
"location": "https://zoom.com",
"start_at": "2025-10-20T08:54:15.000Z",
"status": "pending"
}
}