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.eyJzdWIiOiIxNzM2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzQyNDY0OTUwLCJleHAiOjE3NDUwNTY5NTAsImp0aSI6IjlkNWVhNGU4LTE2ZGUtNGRjYi04MjY3LWFiYjgxMTBhYzYxMCJ9.S_5X4TCbkVa00MdSbq9ob1hwpPpdoNU9b0SPVPKqCkE
Host: example.org
Cookie:
Body
{
"interview": {
"amend_start_at": "2025-03-20T10:32:30Z",
"amend_end_at": "2025-03-20T11:02:30Z"
}
}
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/"0036f2599049138bb77861f92277a686"
cache-control: max-age=0, private, must-revalidate
x-request-id: 9b4c0acb-ddf0-49fd-a2fd-d79875f5257c
x-runtime: 0.029461
content-length: 578
Body
{
"interview": {
"id": 83,
"amend_end_at": "2025-03-20T11:02:30.000Z",
"amend_start_at": "2025-03-20T10:32:30.000Z",
"amended_by": "interviewee",
"end_at": "2025-03-20T10:32:30.000Z",
"interviewee": {
"id": 474,
"driver": {
"id": 1736,
"image": null,
"phone_number": "07922 579501",
"title": "Arcelia Pfeffer"
},
"kind": "verified",
"updated_at": "2025-03-20T10:02:30.000Z"
},
"interviewee_id": 474,
"interviewer": {
"id": 1739,
"contact_phone_number": null,
"image": null,
"title": "Lurline Ritchie"
},
"interviewer_id": 1739,
"kind": "video_call",
"location": "London",
"start_at": "2025-03-20T10:12:30.000Z",
"status": "amended"
}
}