Skip to main content
GET
/
assessment
/
packages
Python
from kombo import SDK


with SDK(
    integration_id="workday:HWUTwvyx2wLoSUHphiWVrp28",
    api_key="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:

    res = sdk.assessment.get_packages()

    # Handle response
    print(res)
{
"status": "success",
"data": {
"packages": [
{
"id": "1001",
"name": "TypeScript",
"description": "TypeScript coding skills assessments",
"updated_at": "2023-06-29T18:47:40.890Z",
"type": "SKILLS_TEST"
}
]
}
}

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

GET /assessment/packages Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"packages": [
{
"id": "1001",
"name": "TypeScript",
"description": "TypeScript coding skills assessments",
"updated_at": "2023-06-29T18:47:40.890Z",
"type": "SKILLS_TEST"
}
]
}