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.eyJzdWIiOiIxMDE1Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzNjI2Mzg1LCJleHAiOjE3NjYyMTgzODUsImp0aSI6IjViNGFhMTgxLTFhNjYtNDc3Yi04NmQxLTM1M2UyNzRiNDkxYSJ9.Qo4Npx5luFJo6yRS1MnIN342HFnntMW25XrJH7lZxiI
Host: example.org
Cookie:
Body
{
"interview": {
"interviewee_id": 289,
"interviewer_id": 1014,
"kind": "video_call",
"location": "https://zoom.com",
"start_at": "2025-11-20T08:13:05Z",
"end_at": "2025-11-20T08:43:05Z"
}
}
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/"02511f0d0b5e8d53e859a57bcc605c12"
cache-control: max-age=0, private, must-revalidate
x-request-id: 0e7f157e-21d5-4782-9818-b0f100dfe1fd
x-runtime: 0.036840
content-length: 548
Body
{
"interview": {
"id": 26,
"amend_end_at": null,
"amend_start_at": null,
"amended_by": null,
"end_at": "2025-11-20T08:43:05.000Z",
"interviewee": {
"id": 289,
"currency": "GBP",
"driver": {
"id": 1012,
"image": null,
"phone_number": "123",
"title": "Raleigh Bechtelar"
},
"kind": "interview",
"updated_at": "2025-11-20T08:13:05.789Z"
},
"interviewee_id": 289,
"interviewer": {
"id": 1014,
"contact_phone_number": null,
"image": null,
"title": "Felipe Vandervort"
},
"interviewer_id": 1014,
"kind": "video_call",
"location": "https://zoom.com",
"start_at": "2025-11-20T08:13:05.000Z",
"status": "pending"
}
}