Skip to main content
GET
/
hris
/
staffing-entity-skills
Get staffing entity skill expectations
curl --request GET \
  --url https://api.kombo.dev/v1/hris/staffing-entity-skills \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Integration-Id: <x-integration-id>'
{
  "status": "success",
  "data": {
    "next": "eyJwYWdlIjoxMiwibm90ZSI6InRoaXMgaXMganVzdCBhbiBleGFtcGxlIGFuZCBub3QgcmVwcmVzZW50YXRpdmUgZm9yIGEgcmVhbCBjdXJzb3IhIn0=",
    "results": [
      {
        "id": "C8gqYqWk6N3qjvJ8vh5o3VtH",
        "staffing_entity_id": "26vafvWSRmbhNcxJYqjCzuJg",
        "skill_id": "28KMdr68N8kG9EzLwjsN9aoz",
        "expected_level": 4,
        "changed_at": "2022-08-07T14:01:29.196Z",
        "remote_deleted_at": null
      }
    ]
  }
}

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.
Retrieve the skills expected on staffing entities (jobs / positions / requisitions), with the expected proficiency level per skill.

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

ids
string

Filter by a comma-separated list of IDs such as 222k7eCGyUdgt2JWZDNnkDs3,B5DVmypWENfU6eMe6gYDyJG3.

remote_ids
string

Filter by a comma-separated list of remote IDs.

staffing_entity_ids
string

Filter by a comma-separated list of staffing entity IDs.

skill_ids
string

Filter by a comma-separated list of skill IDs.

Response

GET /hris/staffing-entity-skills Positive response

status
string
required
Allowed value: "success"
data
object
required
Example:
{
"next": "eyJwYWdlIjoxMiwibm90ZSI6InRoaXMgaXMganVzdCBhbiBleGFtcGxlIGFuZCBub3QgcmVwcmVzZW50YXRpdmUgZm9yIGEgcmVhbCBjdXJzb3IhIn0=",
"results": [
{
"id": "C8gqYqWk6N3qjvJ8vh5o3VtH",
"staffing_entity_id": "26vafvWSRmbhNcxJYqjCzuJg",
"skill_id": "28KMdr68N8kG9EzLwjsN9aoz",
"expected_level": 4,
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null
}
]
}