Users > Interviews

Amend an interview

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.eyJzdWIiOiIxNzQ2Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYwOTUwNDc2LCJleHAiOjE3NjM1NDI0NzYsImp0aSI6ImZmYTBmZThlLTA5OTItNGVhMy1hMGRiLWI4YTkzYjVhYTAwOSJ9.SbDHOWa8wgzJcGBjE-2eVbuysCHghUKwUCJwrStLWa8
Host: example.org
Cookie: 

Body

{
  "interview": {
    "amend_start_at": "2025-10-20T09:24:36Z",
    "amend_end_at": "2025-10-20T09:54:36Z"
  }
}

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/"b8884dae6ab242fe2d6571317087ff47"
cache-control: max-age=0, private, must-revalidate
x-request-id: 6c69527a-5bb0-43aa-b6a1-ad916b8a5a16
x-runtime: 0.030079
content-length: 588

Body

{
  "interview": {
    "id": 83,
    "amend_end_at": "2025-10-20T09:54:36.000Z",
    "amend_start_at": "2025-10-20T09:24:36.000Z",
    "amended_by": "interviewee",
    "end_at": "2025-10-20T09:24:36.000Z",
    "interviewee": {
      "id": 476,
      "currency": "GBP",
      "driver": {
        "id": 1746,
        "image": null,
        "phone_number": "07367 862715",
        "title": "Rex Spencer"
      },
      "kind": "verified",
      "updated_at": "2025-10-20T08:54:36.000Z"
    },
    "interviewee_id": 476,
    "interviewer": {
      "id": 1749,
      "contact_phone_number": null,
      "image": null,
      "title": "Blair Marvin"
    },
    "interviewer_id": 1749,
    "kind": "video_call",
    "location": "London",
    "start_at": "2025-10-20T09:04:36.000Z",
    "status": "amended"
  }
}