curl --request GET \
--url https://api.kombo.dev/v1/hris/job-positions \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'{
"status": "success",
"data": {
"next": "eyJwYWdlIjoxMiwibm90ZSI6InRoaXMgaXMganVzdCBhbiBleGFtcGxlIGFuZCBub3QgcmVwcmVzZW50YXRpdmUgZm9yIGEgcmVhbCBjdXJzb3IhIn0=",
"results": [
{
"id": "66DivjMyjTejkNQiZvgEnaCd",
"remote_id": "893475964229",
"name": "Software Engineer",
"description": "Develops and maintains software applications.",
"legal_entity_id": null,
"location_id": "G6TP2jidzSUV6MHVJmdz1avv",
"department_id": "BaR5b9jnoVns3ZnpG5CHdkpy",
"group_ids": [
"HhXjAXTNok9USc4tP4gU2wXS"
],
"parent_position_id": "H4FFyZWRkW7LSEDE5ctXSgsT",
"skills": [
{
"id": "28KMdr68N8kG9EzLwjsN9aoz",
"remote_id": "238476582",
"name": "TypeScript Programming",
"required": true,
"required_level": "Beginner"
}
],
"remote_data": null,
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null
}
]
}
}Get job positions
curl --request GET \
--url https://api.kombo.dev/v1/hris/job-positions \
--header 'Authorization: Bearer <token>' \
--header 'X-Integration-Id: <x-integration-id>'{
"status": "success",
"data": {
"next": "eyJwYWdlIjoxMiwibm90ZSI6InRoaXMgaXMganVzdCBhbiBleGFtcGxlIGFuZCBub3QgcmVwcmVzZW50YXRpdmUgZm9yIGEgcmVhbCBjdXJzb3IhIn0=",
"results": [
{
"id": "66DivjMyjTejkNQiZvgEnaCd",
"remote_id": "893475964229",
"name": "Software Engineer",
"description": "Develops and maintains software applications.",
"legal_entity_id": null,
"location_id": "G6TP2jidzSUV6MHVJmdz1avv",
"department_id": "BaR5b9jnoVns3ZnpG5CHdkpy",
"group_ids": [
"HhXjAXTNok9USc4tP4gU2wXS"
],
"parent_position_id": "H4FFyZWRkW7LSEDE5ctXSgsT",
"skills": [
{
"id": "28KMdr68N8kG9EzLwjsN9aoz",
"remote_id": "238476582",
"name": "TypeScript Programming",
"required": true,
"required_level": "Beginner"
}
],
"remote_data": null,
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null
}
]
}
}ID of the integration you want to interact with.
Filter by a comma-separated list of IDs such as 222k7eCGyUdgt2JWZDNnkDs3,B5DVmypWENfU6eMe6gYDyJG3.
Filter by a comma-separated list of remote IDs.
GET /hris/job-positions Positive response
"success"Show child attributes
Cursor string that can be passed to the cursor query parameter to get the next page. If this is null, then there are no more pages.
Show child attributes
The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing.
The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key.
The name of the job position
The description of the job position
The ID of the legal entity
The ID of the location
The ID of the department
The IDs of the groups associated with this position
The ID of the parent job position
The skills associated with this position
Show child attributes
The ID of the skill.
The remote ID of the skill.
The name of the skill.
Whether this skill is required or optional for this position.
The required skill level for this position.
Includes the data fetched from the remote system. Please be aware that including this in you scope config might violate other scopes that are set.
Remote data always has the endpoint path that we got the data from as the
top level key. For example, it could look like: { "/companies": { ... }}
This is not available on all plans. Reach out to Kombo if you need it.
The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the updated_after parameter which will return records when either the record itself OR its related models have been updated.
The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.
Was this page helpful?