GET
/
assessment
/
packages
curl --request GET \
  --url https://api.kombo.dev/v1/assessment/packages \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
  "status": "success",
  "data": {
    "packages": [
      {
        "id": "1001",
        "name": "TypeScript",
        "description": "TypeScript coding skills assessments",
        "updated_at": "2023-06-29T18:47:40.890Z",
        "type": "SKILLS_TEST"
      }
    ]
  }
}

This is mainly intended for debugging. As you always need to submit the full list of available packages when using “set packages”, there shouldn’t ever be a need to call this endpoint in production.

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.

Response

200
application/json
GET /assessment/packages Successful response
status
enum<string>
required
Available options:
success
data
object
required
Example:
{
  "packages": [
    {
      "id": "1001",
      "name": "TypeScript",
      "description": "TypeScript coding skills assessments",
      "updated_at": "2023-06-29T18:47:40.890Z",
      "type": "SKILLS_TEST"
    }
  ]
}