Skip to main content
PUT
/
assessment
/
packages
Set packages
curl --request PUT \
  --url https://api.kombo.dev/v1/assessment/packages \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Integration-Id: <x-integration-id>' \
  --data '{
  "packages": [
    {
      "id": "1001",
      "type": "SKILLS_TEST",
      "name": "TypeScript",
      "description": "TypeScript coding skills assessments"
    },
    {
      "id": "1002",
      "type": "VIDEO_INTERVIEW",
      "name": "Video Interview",
      "description": "Video interview to assess communication skills"
    }
  ]
}'
{
"status": "<string>",
"data": {},
"warnings": [
{
"message": "<string>"
}
]
}
This feature is currently available for the following integrations:
    You’d like to see this feature for another integration? Please reach out! We’re always happy to discuss extending our coverage.
    Replaces the list of available assessment and or background check packages. Packages that have been previously submitted through this endpoint but aren’t included again will be marked as deleted.

    Example Request Body

    {
      "packages": [
        {
          "id": "1001",
          "type": "SKILLS_TEST",
          "name": "TypeScript",
          "description": "TypeScript coding skills assessments"
        },
        {
          "id": "1002",
          "type": "VIDEO_INTERVIEW",
          "name": "Video Interview",
          "description": "Video interview to assess communication skills"
        }
      ]
    }
    

    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.

    Body

    application/json

    PUT /assessment/packages Request body

    packages
    object[]
    required

    Response

    PUT /assessment/packages Positive response

    status
    string
    required
    Allowed value: "success"
    data
    object
    required
    warnings
    object[]
    required

    These are the interaction warnings that are shown in the dashboard. They are meant to provide debug information to you. We recommend logging them to the console.

    I