List all taxonomies
GET/hris/{connection_id}/taxonomy
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
type enum
role_idstring
The role ID to filter by
parent_idstring
The parent ID to filter by
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
Returns
HrisTaxonomyarray
idstring
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
type enum
the kind of taxonomy item: skill, knowledge, competence, ability, certification or role/occupation
namestring
the preferred label of the skill/role
descriptionstring
domainstring
1st-level grouping (broadest)
categorystring
2nd-level grouping
subcategorystring
3rd-level grouping
parent_idstring
id of the parent taxonomy item, for providers exposing arbitrary-depth trees
alternative_namesstring array
synonyms / alternative labels
urlstring
external reference URL for this item
role_idsstring array
ids of hris_taxonomy items of type ROLE that this skill relates to
is_activeboolean
const options = {
method: 'GET',
url: 'https://api.unified.to/hris/5de520f96e439b002043d8dc/taxonomy',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-07-14T15:41:29.202Z',
sort: 'updated_at',
order: 'asc',
query: '',
type: '',
role_id: '',
parent_id: '',
fields: '',
raw: '',
}
};
const results = await axios.request(options); Are we missing anything? Let us know