Amend an interview
Users > Interviews
POST amend an interview
Endpoint
POST /api/v1/users/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/users/interviews/83/amend
Headers
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNzY3Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzUzMjY2MjI1LCJleHAiOjE3NTU4NTgyMjUsImp0aSI6IjBhZjExOWE1LTU5MjUtNGU2ZS1iNTBkLWE4OTBmNDBhYzdlOCJ9.grzL6wyDJmf04twqQArY5koPfCE-p_vWs7VgBLIdA34
Host: example.org
Cookie:
Body
{
"interview": {
"amend_start_at": "2025-07-23T10:53:45Z",
"amend_end_at": "2025-07-23T11:23:45Z"
}
}
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/"b7132c5d21f1f2eb3cacb667cd5c520c"
cache-control: max-age=0, private, must-revalidate
x-request-id: 43e28808-3420-4c7a-a7e6-8347a18339cf
x-runtime: 0.040717
content-length: 575
Body
{
"interview": {
"id": 83,
"amend_end_at": "2025-07-23T11:23:45.000Z",
"amend_start_at": "2025-07-23T10:53:45.000Z",
"amended_by": "interviewee",
"end_at": "2025-07-23T10:53:45.000Z",
"interviewee": {
"id": 479,
"driver": {
"id": 1767,
"image": null,
"phone_number": "07878 372503",
"title": "Denae Schinner"
},
"kind": "verified",
"updated_at": "2025-07-23T10:23:45.000Z"
},
"interviewee_id": 479,
"interviewer": {
"id": 1770,
"contact_phone_number": null,
"image": null,
"title": "Morgan Brakus"
},
"interviewer_id": 1770,
"kind": "video_call",
"location": "London",
"start_at": "2025-07-23T10:33:45.000Z",
"status": "amended"
}
}