General
- Introduction
- Getting started
- FAQ
Features
Guides
ATS Assessment API Reference
- Packages
- Orders and results
General API Reference
- Kombo Connect
- Integrations
- Filtering
- Custom Fields
- Other
Get open orders
Get all open assessment orders of an integration.
curl --request GET \
--url https://api.kombo.dev/v1/assessment/orders/open \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"next": "<string>",
"results": [
{
"id": "B5KQKhAgTv6ZwzrfAbqbhipd",
"package_id": "typescript_test",
"candidate": {
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe",
"phone": "+1 123 456 7890",
"remote_id": "26vafvWSRmbhNcxJYqjCzuJg"
},
"application": {
"remote_id": "HAQ9uCfC1zi3TLbB1n5cyHgP"
},
"job": {
"remote_id": "A1KQKhAgTv6ZwzrfAbqbhcde",
"name": "Engineering Manager",
"location": {
"city": "San Francisco",
"country": "US",
"raw": null,
"state": null,
"street_1": null,
"street_2": null,
"zip_code": null
},
"hiring_team": [
{
"remote_id": "26vafvWSRmbhNcxJYqjCzuJr",
"email": "jane.doe@gmail.com",
"first_name": "Jane",
"last_name": "Doe",
"hiring_team_roles": [
"RECRUITER"
]
}
]
}
}
]
}
}
Authorizations
Headers
ID of the integration you want to interact with.
Query Parameters
An optional cursor string used for pagination. This can be retrieved from the next
property of the previous page response.
The number of results to return per page. Maximum is 250.
1 < x < 250
Response
success
The hiring team allows you to sync users into your system who can access the job and its applications.
Array of the roles of the user for this specific job. Currently only RECRUITER
and HIRING_MANAGER
are mapped into our unified schema.
RECRUITER
, HIRING_MANAGER
Contains the ISO2 country code if possible. If not, it contains the original value.
If we have address data, this is filled with the raw address string.
If we can parse the address data, this field contains the first part of the street information.
curl --request GET \
--url https://api.kombo.dev/v1/assessment/orders/open \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"next": "<string>",
"results": [
{
"id": "B5KQKhAgTv6ZwzrfAbqbhipd",
"package_id": "typescript_test",
"candidate": {
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe",
"phone": "+1 123 456 7890",
"remote_id": "26vafvWSRmbhNcxJYqjCzuJg"
},
"application": {
"remote_id": "HAQ9uCfC1zi3TLbB1n5cyHgP"
},
"job": {
"remote_id": "A1KQKhAgTv6ZwzrfAbqbhcde",
"name": "Engineering Manager",
"location": {
"city": "San Francisco",
"country": "US",
"raw": null,
"state": null,
"street_1": null,
"street_2": null,
"zip_code": null
},
"hiring_team": [
{
"remote_id": "26vafvWSRmbhNcxJYqjCzuJr",
"email": "jane.doe@gmail.com",
"first_name": "Jane",
"last_name": "Doe",
"hiring_team_roles": [
"RECRUITER"
]
}
]
}
}
]
}
}