List Job Families
Get a list of all Job Families available in the system. This can for example be used to keep track of proper synchronisation between your system and the Skill Engine API.
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Query Parameters
The maximal number of entities returned, ordered by the last_updated
field and external_id
.
1 <= x <= 200
50
The applied offset for returned entities, results starting from offset
up to offset + limit
.
x >= 0
This parameter can be used to only include entities with the active
attribute set to true
or false
. If the parameter is not set, all entities will be included.
true
Additional entity attributes that will be included in the response body. This query parameter can be added multiple times to include more attributes.
custom_properties
["custom_properties"]
Response
Total number of Job Family objects stored inside the system.
x >= 0
3
Subset of Job Families starting from offset
up to offset + limit
.
Default structure for Job Family.
[
{
"external_id": "5cbdbdbe-5f44-4423-8157-520f8a2f429a",
"active": true,
"job_family_name": "Software Engineer",
"job_family_group": "IT & Engineering"
},
{
"external_id": "62d2c013-ab77-410e-b5fb-2f96eed9c1db",
"active": true,
"job_family_name": "Data Scientist",
"job_family_group": "IT & Engineering"
},
{
"external_id": "6129e3f1-663f-44ea-aa3f-2ce1077b834c",
"active": true,
"job_family_name": "Data Engineer",
"job_family_group": "IT & Engineering"
}
]
Was this page helpful?