Skip to main content
GET
/
ats
/
actions
/
ats_add_application_attachment
cURL
curl --request GET \
  --url https://api.kombo.dev/v1/ats/actions/ats_add_application_attachment \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"attachment_restrictions": {
"types": {
"CV": {
"is_supported": false
},
"COVER_LETTER": {
"is_supported": false
},
"OTHER": {
"is_supported": true,
"max_file_size_bytes": 10485760,
"accepted_mime_types": [
"application/pdf",
"application/msword"
]
}
}
}
}
}

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.

Response

GET /ats/actions/ats_add_application_attachment Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"attachment_restrictions": {
"types": {
"CV": { "is_supported": false },
"COVER_LETTER": { "is_supported": false },
"OTHER": {
"is_supported": true,
"max_file_size_bytes": 10485760,
"accepted_mime_types": ["application/pdf", "application/msword"]
}
}
}
}