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.eyJzdWIiOiIxMDM5Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzNjI2Mzg2LCJleHAiOjE3NjYyMTgzODYsImp0aSI6ImFjZjRmNTkxLTk1MjEtNDI5ZS1hODY0LTc5ZDliNDI4NjdjMSJ9.pssph2aXzDtriAm96_j8m8LT6E6U_IPCKwdCObzbXTA
Host: example.org
Cookie:
Body
{
"interview": {
"location": "https://google.meet",
"start_at": "2025-11-20T08:43:06Z",
"end_at": "2025-11-20T09:13:06Z",
"interviewer_id": 1040,
"interviewee_id": 295
}
}
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/"196b17504f4f2f05946532281db44213"
cache-control: max-age=0, private, must-revalidate
x-request-id: 54543eb6-6bce-457d-8bf5-07880280cccc
x-runtime: 0.018476
content-length: 543
Body
{
"interview": {
"id": 27,
"amend_end_at": null,
"amend_start_at": null,
"amended_by": null,
"end_at": "2025-11-20T09:13:06.000Z",
"interviewee": {
"id": 295,
"currency": "GBP",
"driver": {
"id": 1036,
"image": null,
"phone_number": "123",
"title": "Rodolfo Feil"
},
"kind": "verified",
"updated_at": "2025-11-20T08:13:06.209Z"
},
"interviewee_id": 295,
"interviewer": {
"id": 1040,
"contact_phone_number": null,
"image": null,
"title": "Patrick Waelchi"
},
"interviewer_id": 1040,
"kind": "video_call",
"location": "https://google.meet",
"start_at": "2025-11-20T08:43:06.000Z",
"status": "pending"
}
}