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.eyJzdWIiOiIxNzkzIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzNjI2NDExLCJleHAiOjE3NjYyMTg0MTEsImp0aSI6IjBjYmFhNTQ4LTNhN2UtNDY1Ni1hMTUxLTE3ZjllMDU2MTM4YiJ9.Nktr6ySisVrJj4gyVYOD3VPlfjnbRNt5yxnJQm2iefo
Host: example.org
Cookie: 

Body

{
  "interview": {
    "amend_start_at": "2025-11-20T08:43:31Z",
    "amend_end_at": "2025-11-20T09:13:31Z"
  }
}

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/"b708df5d2caf4269638291d38bd17323"
cache-control: max-age=0, private, must-revalidate
x-request-id: 0b332244-c96c-41ca-a912-f10384cf2771
x-runtime: 0.027567
content-length: 590

Body

{
  "interview": {
    "id": 83,
    "amend_end_at": "2025-11-20T09:13:31.000Z",
    "amend_start_at": "2025-11-20T08:43:31.000Z",
    "amended_by": "interviewee",
    "end_at": "2025-11-20T08:43:31.000Z",
    "interviewee": {
      "id": 497,
      "currency": "GBP",
      "driver": {
        "id": 1793,
        "image": null,
        "phone_number": "07871 532936",
        "title": "Cindy Kuvalis"
      },
      "kind": "verified",
      "updated_at": "2025-11-20T08:13:31.000Z"
    },
    "interviewee_id": 497,
    "interviewer": {
      "id": 1796,
      "contact_phone_number": null,
      "image": null,
      "title": "Glen Dibbert"
    },
    "interviewer_id": 1796,
    "kind": "video_call",
    "location": "London",
    "start_at": "2025-11-20T08:23:31.000Z",
    "status": "amended"
  }
}