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.eyJzdWIiOiIxNzYwIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQ4NTE2NTM3LCJleHAiOjE3NTExMDg1MzcsImp0aSI6IjI3NmU1OGFhLTUyODYtNDBmOC1hMTg2LTQzMjc4MWY2NDgxYiJ9.cliyt1LjrJa7gLdaBDY5xWaho_idR7jNVHpbjgIJyg8
Host: example.org
Cookie:
Body
{
"interview": {
"amend_start_at": "2025-05-29T11:32:17Z",
"amend_end_at": "2025-05-29T12:02:17Z"
}
}
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/"3b641f0843c1633952530df8e65a7249"
cache-control: max-age=0, private, must-revalidate
x-request-id: 973b75be-c489-4354-827c-4a71966fa134
x-runtime: 0.029473
content-length: 568
Body
{
"interview": {
"id": 83,
"amend_end_at": "2025-05-29T12:02:17.000Z",
"amend_start_at": "2025-05-29T11:32:17.000Z",
"amended_by": "interviewee",
"end_at": "2025-05-29T11:32:17.000Z",
"interviewee": {
"id": 476,
"driver": {
"id": 1760,
"image": null,
"phone_number": "07444 510330",
"title": "Ron Ward"
},
"kind": "verified",
"updated_at": "2025-05-29T11:02:17.000Z"
},
"interviewee_id": 476,
"interviewer": {
"id": 1763,
"contact_phone_number": null,
"image": null,
"title": "Winford Hane"
},
"interviewer_id": 1763,
"kind": "video_call",
"location": "London",
"start_at": "2025-05-29T11:12:17.000Z",
"status": "amended"
}
}