Skip to main content
GET
/
assessment
/
orders
/
open
Get open orders (deprecated)
curl --request GET \
  --url https://api.kombo.dev/v1/assessment/orders/open \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
  "status": "<string>",
  "data": {
    "next": "<string>",
    "results": [
      {
        "id": "<string>",
        "package_id": "<string>",
        "candidate": {
          "remote_id": "<string>",
          "email": "jsmith@example.com",
          "first_name": "<string>",
          "last_name": "<string>",
          "phone": "<string>"
        },
        "application": {
          "remote_id": "<string>"
        },
        "job": {
          "remote_id": "<string>",
          "name": "<string>",
          "job_code": "<string>",
          "description": "<string>",
          "location": {
            "street_1": "<string>",
            "street_2": "<string>",
            "city": "<string>",
            "state": "<string>",
            "zip_code": "<string>",
            "country": "<string>",
            "raw": "<string>"
          },
          "hiring_team": [
            {
              "remote_id": "<string>",
              "email": "<string>",
              "first_name": "<string>",
              "last_name": "<string>",
              "hiring_team_roles": [
                "RECRUITER"
              ]
            }
          ]
        }
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.kombo.dev/llms.txt

Use this file to discover all available pages before exploring further.

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.

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<int64>
default:100

The number of results to return per page. Maximum is 250.

Required range: 1 <= x <= 250

Response

GET /assessment/orders/open Positive response

status
string
required
Allowed value: "success"
data
object
required