Update an interview
Interviews
PATCH updates an interview
Endpoint
PATCH /api/v1/interviews/:id
Parameters
| Name | Description |
|---|---|
| interview[kind] | Interview kind |
| interview[start_at] | Interview start at |
| interview[end_at] | Interview end at |
| interview[interviewee_id] | Interview interviewee |
| interview[interviewer_id] | Interview interviewer |
| interview[location] | Interview location |
Request
Route
PATCH /api/v1/interviews/27
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI5OTkiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NjA5NTA0NTUsImV4cCI6MTc2MzU0MjQ1NSwianRpIjoiYmUzNDhmMTQtOWM2MC00ZGYyLTgzNjUtNmQyMTkzMGFkODk2In0.GHXXzVgUp2OsJdPUYF69IMEmTX7cSjTwsJOKE1Z7S5I
Host: example.org
Cookie:
Body
{
"interview": {
"location": "https://google.meet",
"start_at": "2025-10-20T09:24:15Z",
"end_at": "2025-10-20T09:54:15Z",
"interviewer_id": 1000,
"interviewee_id": 276
}
}
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/"42d6d36c9265b3a04a97d2a2a584acbd"
cache-control: max-age=0, private, must-revalidate
x-request-id: 1ebce118-bdb2-47b8-9794-f4883aa40a22
x-runtime: 0.019191
content-length: 545
Body
{
"interview": {
"id": 27,
"amend_end_at": null,
"amend_start_at": null,
"amended_by": null,
"end_at": "2025-10-20T09:54:15.000Z",
"interviewee": {
"id": 276,
"currency": "GBP",
"driver": {
"id": 996,
"image": null,
"phone_number": "123",
"title": "Margene Ondricka"
},
"kind": "verified",
"updated_at": "2025-10-20T08:54:15.518Z"
},
"interviewee_id": 276,
"interviewer": {
"id": 1000,
"contact_phone_number": null,
"image": null,
"title": "Santo Schinner"
},
"interviewer_id": 1000,
"kind": "video_call",
"location": "https://google.meet",
"start_at": "2025-10-20T09:24:15.000Z",
"status": "pending"
}
}