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.eyJzdWIiOiI5OTkiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NTMyNjYxOTcsImV4cCI6MTc1NTg1ODE5NywianRpIjoiZjQ4Y2IzM2UtZjI1ZC00MTYyLTgyN2UtODY1MjhkOWNhMDBhIn0.fpZBWlmIHtRW6RblIODtyhYrzBwK5W9WND_-DJS1Fpk
Host: example.org
Cookie:
Body
{
"interview": {
"location": "https://google.meet",
"start_at": "2025-07-23T10:53:17Z",
"end_at": "2025-07-23T11:23:17Z",
"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/"05e3cc48164e7c1df40dacc6c73fd01a"
cache-control: max-age=0, private, must-revalidate
x-request-id: fa718557-04d4-4e1c-8290-961062fb2a37
x-runtime: 0.031393
content-length: 522
Body
{
"interview": {
"id": 27,
"amend_end_at": null,
"amend_start_at": null,
"amended_by": null,
"end_at": "2025-07-23T11:23:17.000Z",
"interviewee": {
"id": 276,
"driver": {
"id": 996,
"image": null,
"phone_number": "123",
"title": "Dennis Farrell"
},
"kind": "verified",
"updated_at": "2025-07-23T10:23:17.108Z"
},
"interviewee_id": 276,
"interviewer": {
"id": 1000,
"contact_phone_number": null,
"image": null,
"title": "Caren Ryan"
},
"interviewer_id": 1000,
"kind": "video_call",
"location": "https://google.meet",
"start_at": "2025-07-23T10:53:17.000Z",
"status": "pending"
}
}