curl --request POST \
--url https://api.example.com/admin/entity/history \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityTypeID": 1,
"entityID": 1234,
"languageID": 1,
"searchText": null,
"eventTypeIDs": null,
"adminIserIDs": null,
"involvedIserIDs": null,
"involvedIserHandles": null,
"startDate": null,
"endDate": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Returns the history data for any and all entities, including Category|Topic|Verb|Conjunction|Word|ExploreGroup|IsmList, etc.
curl --request POST \
--url https://api.example.com/admin/entity/history \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityTypeID": 1,
"entityID": 1234,
"languageID": 1,
"searchText": null,
"eventTypeIDs": null,
"adminIserIDs": null,
"involvedIserIDs": null,
"involvedIserHandles": null,
"startDate": null,
"endDate": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.