Orders and results
Get open orders
Get all open assessment orders of an integration.
GET
/
assessment
/
orders
/
open
Authorization
Header
Query
curl --request GET \
--url https://api.kombo.dev/v1/assessment/orders/open \
--header 'Authorization: <authorization>' \
--header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"next": "<string>",
"results": []
}
}
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.
Query Parameters
cursor
string
An optional cursor string used for pagination. This can be retrieved from the next
property of the previous page response.
page_size
integer
default: 100The number of results to return per page.
Response
200 - application/json
status
enum<string>
requiredAvailable options:
success
data
object
requiredcurl --request GET \
--url https://api.kombo.dev/v1/assessment/orders/open \
--header 'Authorization: <authorization>' \
--header 'X-Integration-Id: <x-integration-id>'
{
"status": "success",
"data": {
"next": "<string>",
"results": []
}
}