v3
OpenAPI 3.1.02026-07-311255771.3 MBUnified ATS API
Get application attachments
Get attachments from a candidate or application.
Get attachments from an application. If the ATS stores the attachments on the candidate, it will get the attachments from the corresponding candidate instead.
<Note> This endpoint requires the permission **Read document attachments** to be enabled in [your scope config](/scopes). </Note>get/ats/applications/{application_id}/attachments
Path parameters
application_idstring required
The Kombo ID of the application you want to obtain attachments for.
The Kombo ID of the application you want to obtain attachments for.
Headers
X-Integration-Idstring required
ID of the integration you want to interact with.
Response
GET /ats/applications/:application_id/attachments Positive response
Example response
{
"data": {
"results": [
{
"type": "CV",
"id": "EYJjhMQT3LtVKXnTbnRT8s6U",
"remote_id": "GUzE666zfyjeoCJX6A8n7wh6",
"data_url": "https://resources.kombo.dev/7yZfKGzWigXxxRTygqAfHvyE",
"file_name": "Frank Doe CV.pdf",
"content_type": "application/x-pdf",
"remote_created_at": null,
"remote_updated_at": null
}
]
}
}