POST
/
ats
/
applications
/
{application_id}
/
interviews
Create interview 🦄
curl --request POST \
  --url https://api.kombo.dev/v1/ats/applications/{application_id}/interviews \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Integration-Id: <x-integration-id>' \
  --data '{
  "title": "<string>",
  "start_time": "<string>",
  "end_time": "<string>",
  "interviewer_user_ids": [
    "<string>"
  ],
  "organizer_user_id": "<string>",
  "location": {
    "type": "PHYSICAL",
    "address": "<string>"
  }
}'
{
"status": "<string>",
"data": {}
}
This endpoint is currently in closed beta! We’re testing it with selected customers before its public release. If you’re interested in learning more or getting early access, please reach out.

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Headers

X-Integration-Id
string
required

ID of the integration you want to interact with.

Path Parameters

application_id
string
required

The ID of the application

Body

application/json

POST /ats/applications/:application_id/interviews Request body

title
string
required

The title of the interview

start_time
string
required

The start time of the interview

end_time
string
required

The end time of the interview

interviewer_user_ids
string[]
required

The IDs of the interviewers

organizer_user_id
string
required

The ID of the organizer

location
object
required

Response

POST /ats/applications/:application_id/interviews Positive response

status
string
required
Allowed value: "success"
data
object
required