Interviews

Amend an interview

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.eyJzdWIiOiIxMDUzIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzU4MDEyNDg2LCJleHAiOjE3NjA2MDQ0ODYsImp0aSI6IjIxYTY3YWU2LTNmOGMtNGQ3Yy05ZWI3LWE0ZGM5ZTRkNmVmYyJ9.x8BsYcd-jPdj4scA-c7SvomEkEADFltviwE5syCbS0s
Host: example.org
Cookie: 

Body

{
  "interview": {
    "amend_start_at": "2025-09-16T09:18:06Z",
    "amend_end_at": "2025-09-16T09:48:06Z"
  }
}

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/"407983526f543bbe56fbdb44f34f7a87"
cache-control: max-age=0, private, must-revalidate
x-request-id: 84caa198-4af9-4731-a510-0f5341a9b6b3
x-runtime: 0.025126
content-length: 576

Body

{
  "interview": {
    "id": 37,
    "amend_end_at": "2025-09-16T09:48:06.000Z",
    "amend_start_at": "2025-09-16T09:18:06.000Z",
    "amended_by": "interviewer",
    "end_at": "2025-09-16T09:18:06.000Z",
    "interviewee": {
      "id": 296,
      "driver": {
        "id": 1050,
        "image": null,
        "phone_number": "07825 268193",
        "title": "Tristan Pouros"
      },
      "kind": "verified",
      "updated_at": "2025-09-16T08:48:06.000Z"
    },
    "interviewee_id": 296,
    "interviewer": {
      "id": 1053,
      "contact_phone_number": null,
      "image": null,
      "title": "Fernando Hintz"
    },
    "interviewer_id": 1053,
    "kind": "video_call",
    "location": "London",
    "start_at": "2025-09-16T08:58:06.000Z",
    "status": "amended"
  }
}