PATCH
/
ats
/
applications
/
{application_id}
/
interviews
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": "success",
  "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

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

The body is of type object.

Response

200
application/json

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

The response is of type object.