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.eyJzdWIiOiI5OTkiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NTgwMTI0ODUsImV4cCI6MTc2MDYwNDQ4NSwianRpIjoiMTZkNzM0MWQtYjZlZS00YTA1LWE1MTUtNjhiMTRmMGI5YjZmIn0.LQ7fODpOl0NhrIdhH6ZNfUgl8QOpvoxu0Ry8jrFnm-U
Host: example.org
Cookie:
Body
{
"interview": {
"location": "https://google.meet",
"start_at": "2025-09-16T09:18:05Z",
"end_at": "2025-09-16T09:48:05Z",
"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/"718f9776bcfe8b4f3f7575e316e4ad2e"
cache-control: max-age=0, private, must-revalidate
x-request-id: 5c1a0808-ee96-4832-920a-bef7e84b86a2
x-runtime: 0.019664
content-length: 527
Body
{
"interview": {
"id": 27,
"amend_end_at": null,
"amend_start_at": null,
"amended_by": null,
"end_at": "2025-09-16T09:48:05.000Z",
"interviewee": {
"id": 276,
"driver": {
"id": 996,
"image": null,
"phone_number": "123",
"title": "Thao Windler"
},
"kind": "verified",
"updated_at": "2025-09-16T08:48:05.878Z"
},
"interviewee_id": 276,
"interviewer": {
"id": 1000,
"contact_phone_number": null,
"image": null,
"title": "Eugenio Considine"
},
"interviewer_id": 1000,
"kind": "video_call",
"location": "https://google.meet",
"start_at": "2025-09-16T09:18:05.000Z",
"status": "pending"
}
}