Skip to main content
GET
/
ats
/
applications
/
{application_id}
/
attachments
Python
from kombo import SDK


with SDK(
    integration_id="workday:HWUTwvyx2wLoSUHphiWVrp28",
    api_key="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:

    res = sdk.ats.get_application_attachments(application_id="8Xi6iZrwusZqJmDGXs49GBmJ")

    # Handle response
    print(res)
{
"status": "success",
"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
}
]
},
"warnings": [
{
"message": "This is an example warning!"
}
]
}

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.

Path Parameters

application_id
string
required

The Kombo ID of the application you want to obtain attachments for.

Response

GET /ats/applications/:application_id/attachments Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"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
}
]
}
warnings
object[]
required

These are the interaction warnings that are shown in the dashboard. They are meant to provide debug information to you. We recommend logging them to the console.