Skip to main content
PATCH
/
ats
/
applications
/
{application_id}
/
interviews
Update interview
curl --request PATCH \
  --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 '{
  "interview_id": "<string>",
  "title": "<string>",
  "start_time": "<string>",
  "end_time": "<string>",
  "interviewer_user_ids": [
    "<string>"
  ],
  "organizer_user_id": "<string>",
  "location": {
    "type": "PHYSICAL",
    "address": "<string>"
  }
}'
{
"status": "<string>",
"data": {}
}

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

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

interview_id
string
required

The ID of the interview

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

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

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