Skip to main content
GET
/
assessment
/
orders
/
open
TypeScript
import { Kombo } from "@kombo-api/sdk";

const kombo = new Kombo({
  integration_id: "workday:HWUTwvyx2wLoSUHphiWVrp28",
  api_key: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await kombo.assessment.getOpenOrders({});

  for await (const page of result) {
    console.log(page);
  }
}

run();
{
  "status": "<string>",
  "data": {
    "next": "<string>",
    "results": [
      {
        "id": "<string>",
        "package_id": "<string>",
        "candidate": {
          "email": "jsmith@example.com",
          "remote_id": "<string>",
          "first_name": "<string>",
          "last_name": "<string>",
          "phone": "<string>"
        },
        "application": {
          "remote_id": "<string>"
        },
        "job": {
          "hiring_team": [
            {
              "remote_id": "<string>",
              "email": "<string>",
              "first_name": "<string>",
              "last_name": "<string>",
              "hiring_team_roles": [
                "RECRUITER"
              ]
            }
          ],
          "remote_id": "<string>",
          "name": "<string>",
          "location": {
            "city": "<string>",
            "country": "<string>",
            "raw": "<string>",
            "state": "<string>",
            "street_1": "<string>",
            "street_2": "<string>",
            "zip_code": "<string>"
          }
        }
      }
    ]
  }
}

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