Skip to main content
GET
/
hris
/
skills
/
bulk
/
{task_id}
Get status of “Upsert skills” task
curl --request GET \
  --url https://api.kombo.dev/v1/hris/skills/bulk/{task_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
  "status": "success",
  "data": {
    "task_id": "task_28KMdr68N8kG9EzLwjsN9aoz",
    "created_at": "2022-08-07T14:01:29.196Z",
    "status": "COMPLETED",
    "data": [
      {
        "origin_id": "skill-1",
        "status": "SUCCEEDED",
        "data": {
          "id": "28KMdr68N8kG9EzLwjsN9aoz"
        }
      }
    ],
    "completed_at": "2022-08-07T14:01:29.196Z"
  }
}

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.

Closed Beta Feature: This endpoint is currently in closed beta. We’re testing it with selected customers before its public release. If you’re interested in learning more or getting early access, please reach out.
Poll for the status of a skill catalog write.
This endpoint returns the current status of a task. Poll it at regular intervals until the task reaches a terminal status. Learn more in our async endpoints guide. The possible statuses are:
  • PENDING – The task is still being processed.
  • COMPLETED – The task finished successfully. The data field contains one result per item in the original request.
  • FAILED – The task encountered an error. Check the error field for details.

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.

Path Parameters

task_id
string
required

The ID of the skill catalog write task.

Response

GET /hris/skills/bulk/:task_id Positive response

status
string
required
Allowed value: "success"
data
object
required
Example:
{
"task_id": "task_28KMdr68N8kG9EzLwjsN9aoz",
"created_at": "2022-08-07T14:01:29.196Z",
"status": "COMPLETED",
"data": [
{
"origin_id": "skill-1",
"status": "SUCCEEDED",
"data": { "id": "28KMdr68N8kG9EzLwjsN9aoz" }
}
],
"completed_at": "2022-08-07T14:01:29.196Z"
}