Candidates
Add attachment to candidate
Uploads an attachment file for the specified candidate.
POST
/
ats
/
candidates
/
{candidate_id}
/
attachments
Authorization
Header
Path
Body
curl --request POST \
--url https://api.kombo.dev/v1/ats/candidates/{candidate_id}/attachments \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'X-Integration-Id: <x-integration-id>' \
--data '{
"attachment": {
"name": "Frank Doe CV.txt",
"data": "SGkgdGhlcmUsIEtvbWJvIGlzIGN1cnJlbnRseSBoaXJpbmcgZW5naW5lZXJzIHRoYXQgbG92ZSB0byB3b3JrIG9uIGRldmVsb3BlciBwcm9kdWN0cy4=",
"type": "CV",
"content_type": "text/plain"
}
}'
{
"status": "success",
"data": {}
}
This endpoint requires the permission Create and manage candidates and applications to be enabled in your scope config.
Example Request Body
{
"candidate_id": "GRKdd9dibYKKCrmGRSMJf3wu",
"attachment": {
"name": "Frank Doe CV.txt",
"data": "SGkgdGhlcmUsIEtvbWJvIGlzIGN1cnJlbnRseSBoaXJpbmcgZW5naW5lZXJzIHRoYXQgbG92ZSB0byB3b3JrIG9uIGRldmVsb3BlciBwcm9kdWN0cy4=",
"type": "CV",
"content_type": "text/plain"
}
}
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
candidate_id
string
requiredPOST /ats/candidates/:candidate_id/attachments parameter
Body
application/json
attachment
object
requiredremote_fields
object
Additional fields that we will pass through to specific ATS systems.
Response
200 - application/json
status
enum<string>
requiredAvailable options:
success
data
object
requiredcurl --request POST \
--url https://api.kombo.dev/v1/ats/candidates/{candidate_id}/attachments \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'X-Integration-Id: <x-integration-id>' \
--data '{
"attachment": {
"name": "Frank Doe CV.txt",
"data": "SGkgdGhlcmUsIEtvbWJvIGlzIGN1cnJlbnRseSBoaXJpbmcgZW5naW5lZXJzIHRoYXQgbG92ZSB0byB3b3JrIG9uIGRldmVsb3BlciBwcm9kdWN0cy4=",
"type": "CV",
"content_type": "text/plain"
}
}'
{
"status": "success",
"data": {}
}