POST
/
ats
/
applications
/
{application_id}
/
notes
curl --request POST \
  --url https://api.kombo.dev/v1/ats/applications/{application_id}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Integration-Id: <x-integration-id>' \
  --data '{
  "content": "A new message from the candidate is available in YourChat!",
  "content_type": "PLAIN_TEXT"
}'
{
  "status": "success",
  "data": {}
}

Add extra information to an application. This can be any extra text information you want to add to an application.

This endpoint requires the permission Create and manage candidates and applications to be enabled in your scope config.

Example Request Body

{
  "content": "A new message from the candidate is available in YourChat!",
  "content_type": "PLAIN_TEXT"
}

Authorizations

Authorization
string
headerrequired

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 Kombo ID of the application you want to create the note for.

Body

application/json
content
string
required

UTF-8 content of the note.

content_type
enum<string>
required

Content type of the note. Currently only PLAIN_TEXT is supported.

Available options:
PLAIN_TEXT
remote_fields
object

Tool specific remote fields for the note.

Response

200 - application/json
status
enum<string>
required
Available options:
success
data
object
required