Skip to main content
POST
/
ats
/
import-tracked-application
Python
from kombo import SDK
from kombo.utils import parse_datetime


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

    res = sdk.ats.import_tracked_application(tracked_at=parse_datetime("2024-04-12T14:33:47Z"), successfactors={
        "id_type": "application_remote_id",
        "application_remote_id": "1224042",
    })

    # Handle response
    print(res)
{
"status": "success",
"data": {
"id": "5wdtQtJei2oVhJKya2V1KZLM",
"tracked_at": "2025-02-11T15:37:37.000Z",
"imported_id": {
"successfactors": {
"id_type": "application_remote_id",
"application_remote_id": "1224042"
}
}
},
"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.

Body

application/json

POST /ats/import-tracked-application Request body

tracked_at
string<date-time> | null
required

YYYY-MM-DDTHH:mm:ss.sssZ

erecruiter
object
  • Option 1
  • Option 2
successfactors
object
recruitee
object
greenhouse
object
onlyfy
object
smartrecruiters
object

Response

POST /ats/import-tracked-application Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"id": "5wdtQtJei2oVhJKya2V1KZLM",
"tracked_at": "2025-02-11T15:37:37.000Z",
"imported_id": {
"successfactors": {
"id_type": "application_remote_id",
"application_remote_id": "1224042"
}
}
}
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.