Export Taxonomy changes with filtering and keyset pagination. This endpoint supports filtering by operation type, external ID, and timestamp, and uses keyset pagination for efficient retrieval of large datasets. This endpoint returns changes for all skills, including those outside the current Taxonomy, and includes the external_id field in the response.
The access token received from the authorization server in the OAuth 2.0 flow.
The external vendor vocabulary you want to get Taxonomy changes from. Defaults to TechWolf if not specified. This parameter filters changes to only include vendor-aware operations for the specified vendor, or vendor-unaware operations that apply to all vendors.
workday, sap_attribute_library "workday"
The maximal number of Taxonomy changes returned per page. Used for keyset pagination.
1 <= x <= 200100
The external_id of the Taxonomy change to continue looking from. Use this value from the next_starting_after field in the previous response to get the next page of results.
100"5a149aca-671a-4eb1-9fe8-37673c11e6ef"
A list of filters to apply on the Taxonomy changes. Supported filters include filtering by operation type, external ID, and timestamp.
[
{
"filter": "operation_type_is_in_list",
"operation_types": [
"vocab_update_add_skill",
"vocab_update_rename_skill",
"vocab_update_merge_skill",
"vocab_update_remove_skill"
]
},
{
"filter": "external_id_is_in_list",
"external_ids": [
"e92ae376-da31-4fd8-b29e-a767715a703d",
"6d7dd039-867b-4376-9f6f-b53ff7651d88"
]
},
{
"filter": "timestamp",
"value": "2021-01-21T17:32:28",
"operator": "gte"
},
{
"filter": "timestamp",
"value": "2021-02-01T00:00:00",
"operator": "lte"
}
]
OK
Default structure for Taxonomy changes export (POST endpoint).
Whether there are more Taxonomy changes available after the current page.
true
List of Taxonomy changes returned for the current page, ordered by timestamp.
The external_id of the last Taxonomy change in the current page. Use this value as starting_after in the next request to get the next page of results. Only present when has_next is true.
"5a149aca-671a-4eb1-9fe8-37673c11e6ef"