Applications
Add note to application
Add a note to an application.
POST
/
ats
/
applications
/
{application_id}
/
notes
Authorization
Header
Path
Body
curl --request POST \
--url https://api.kombo.dev/v1/ats/applications/{application_id}/notes \
--header 'Authorization: <authorization>' \
--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
headerrequiredCreate an API key on the Secrets page in the Kombo dashboard.
Headers
X-Integration-Id
string
requiredID of the integration you want to interact with.
Path Parameters
application_id
string
requiredKombo ID of the application you want to create the note for.
Body
application/json
content
string
requiredUTF-8 content of the note.
content_type
enum<string>
requiredContent 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>
requiredAvailable options:
success
data
object
requiredcurl --request POST \
--url https://api.kombo.dev/v1/ats/applications/{application_id}/notes \
--header 'Authorization: <authorization>' \
--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": {}
}