Amend an interview
Interviews
POST amend an interview
Endpoint
POST /api/v1/interviews/:id/amend
Parameters
| Name | Description |
|---|---|
| interview[amend_start_at] required | Interview amend start at |
| interview[amend_end_at] required | Interview amend end at |
Request
Route
POST /api/v1/interviews/37/amend
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxMDUzIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYwOTUwNDU2LCJleHAiOjE3NjM1NDI0NTYsImp0aSI6IjUwMzBiNGEwLTI4ODktNDg1Mi1iMmI2LWNlOTg1MjUwYzc0NyJ9.Wb6wRgvU5nEvPZlf-D2iQzDYgNxhx5Y3I6SXz79Ejgk
Host: example.org
Cookie:
Body
{
"interview": {
"amend_start_at": "2025-10-20T09:24:16Z",
"amend_end_at": "2025-10-20T09:54:16Z"
}
}
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/"f231ec0d904e5b5d88f13ff511e209dd"
cache-control: max-age=0, private, must-revalidate
x-request-id: 24e6045b-46da-40e7-b881-22e4dddb2ab2
x-runtime: 0.020842
content-length: 590
Body
{
"interview": {
"id": 37,
"amend_end_at": "2025-10-20T09:54:16.000Z",
"amend_start_at": "2025-10-20T09:24:16.000Z",
"amended_by": "interviewer",
"end_at": "2025-10-20T09:24:16.000Z",
"interviewee": {
"id": 296,
"currency": "GBP",
"driver": {
"id": 1050,
"image": null,
"phone_number": "07478 987157",
"title": "Cyrus Wiza"
},
"kind": "verified",
"updated_at": "2025-10-20T08:54:16.000Z"
},
"interviewee_id": 296,
"interviewer": {
"id": 1053,
"contact_phone_number": null,
"image": null,
"title": "Jennine Kovacek"
},
"interviewer_id": 1053,
"kind": "video_call",
"location": "London",
"start_at": "2025-10-20T09:04:16.000Z",
"status": "amended"
}
}