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.eyJzdWIiOiIxMDkwIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYzMDIyMjA4LCJleHAiOjE3NjU2MTQyMDgsImp0aSI6IjU5MTcwNTQ4LTk0YTItNDU3Zi05NzczLWFlMjE0ZjZjMzQ1YiJ9.Z8cvunMnPHjUbgVhSbSJTK2ORb7FxKn8FUNh6AfPd5E
Host: example.org
Cookie: 

Body

{
  "interview": {
    "amend_start_at": "2025-11-13T08:53:28Z",
    "amend_end_at": "2025-11-13T09:23:28Z"
  }
}

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/"8db599ec8294c507f824587a33648291"
cache-control: max-age=0, private, must-revalidate
x-request-id: 5586a4ad-c46a-4396-a8e0-77886df0e834
x-runtime: 0.087772
content-length: 588

Body

{
  "interview": {
    "id": 37,
    "amend_end_at": "2025-11-13T09:23:28.000Z",
    "amend_start_at": "2025-11-13T08:53:28.000Z",
    "amended_by": "interviewer",
    "end_at": "2025-11-13T08:53:28.000Z",
    "interviewee": {
      "id": 315,
      "currency": "GBP",
      "driver": {
        "id": 1087,
        "image": null,
        "phone_number": "07856 007115",
        "title": "Sook Botsford"
      },
      "kind": "verified",
      "updated_at": "2025-11-13T08:23:28.000Z"
    },
    "interviewee_id": 315,
    "interviewer": {
      "id": 1090,
      "contact_phone_number": null,
      "image": null,
      "title": "Troy Rohan"
    },
    "interviewer_id": 1090,
    "kind": "video_call",
    "location": "London",
    "start_at": "2025-11-13T08:33:28.000Z",
    "status": "amended"
  }
}