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.eyJzdWIiOiIxMDUzIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzUzMjY2MTk4LCJleHAiOjE3NTU4NTgxOTgsImp0aSI6IjBkOTNkMjZlLWEzZjgtNDI1Mi1hY2Y1LTQ1Yzc1ZjAzOTJiNSJ9.fxloK6NVUPxHIOfAo3nCVeyLgpMZgweP3zNl5x4VmyQ
Host: example.org
Cookie:
Body
{
"interview": {
"amend_start_at": "2025-07-23T10:53:18Z",
"amend_end_at": "2025-07-23T11:23:18Z"
}
}
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/"24b77b6d417872f63dc3b0f4c4ae20ad"
cache-control: max-age=0, private, must-revalidate
x-request-id: 36efb01f-52b4-4f8d-9dc9-0b47fa777cd7
x-runtime: 0.037185
content-length: 570
Body
{
"interview": {
"id": 37,
"amend_end_at": "2025-07-23T11:23:18.000Z",
"amend_start_at": "2025-07-23T10:53:18.000Z",
"amended_by": "interviewer",
"end_at": "2025-07-23T10:53:18.000Z",
"interviewee": {
"id": 296,
"driver": {
"id": 1050,
"image": null,
"phone_number": "07367 870190",
"title": "Adrian Herzog"
},
"kind": "verified",
"updated_at": "2025-07-23T10:23:18.000Z"
},
"interviewee_id": 296,
"interviewer": {
"id": 1053,
"contact_phone_number": null,
"image": null,
"title": "John Bins"
},
"interviewer_id": 1053,
"kind": "video_call",
"location": "London",
"start_at": "2025-07-23T10:33:18.000Z",
"status": "amended"
}
}