Interviews

Create an interview

POST create an interview

Endpoint

POST /api/v1/interviews/

Parameters

Name Description
interview[kind] required Interview kind
interview[start_at] required Interview start at
interview[end_at] required Interview end at
interview[interviewee_id] required Interview interviewee
interview[interviewer_id] required Interview interviewer
interview[location] Interview location

Request

Route

POST /api/v1/interviews/

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI5NzUiLCJzY3AiOiJ1c2VyIiwiYXVkIjpudWxsLCJpYXQiOjE3NTMyNjYxOTYsImV4cCI6MTc1NTg1ODE5NiwianRpIjoiNGM0MGI1NTUtNWZjMS00OTE5LWFiNTItNDEzYTBlODY0YTNlIn0.JOEXX42TzNg3UzZ4ga6EjMykYKxsvL4d9mEKUcjDrSc
Host: example.org
Cookie: 

Body

{
  "interview": {
    "interviewee_id": 270,
    "interviewer_id": 974,
    "kind": "video_call",
    "location": "https://zoom.com",
    "start_at": "2025-07-23T10:23:16Z",
    "end_at": "2025-07-23T10:53:16Z"
  }
}

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/"ee9c3814d2ebf945796875cfc55effc1"
cache-control: max-age=0, private, must-revalidate
x-request-id: 82759d8a-8632-49e2-b7ea-888b3d17d8b2
x-runtime: 0.054751
content-length: 523

Body

{
  "interview": {
    "id": 26,
    "amend_end_at": null,
    "amend_start_at": null,
    "amended_by": null,
    "end_at": "2025-07-23T10:53:16.000Z",
    "interviewee": {
      "id": 270,
      "driver": {
        "id": 972,
        "image": null,
        "phone_number": "123",
        "title": "Carman Dibbert"
      },
      "kind": "interview",
      "updated_at": "2025-07-23T10:23:16.584Z"
    },
    "interviewee_id": 270,
    "interviewer": {
      "id": 974,
      "contact_phone_number": null,
      "image": null,
      "title": "Cornelius Jones"
    },
    "interviewer_id": 974,
    "kind": "video_call",
    "location": "https://zoom.com",
    "start_at": "2025-07-23T10:23:16.000Z",
    "status": "pending"
  }
}