curl --request POST \
--url https://api.example.com/entity/history/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityTypeID": 1,
"entityID": 1234,
"languageID": 1,
"searchText": null,
"eventTypeIDs": null,
"startDate": null,
"endDate": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Returns the history data for any and all entities, including ism|iser, etc.
curl --request POST \
--url https://api.example.com/entity/history/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityTypeID": 1,
"entityID": 1234,
"languageID": 1,
"searchText": null,
"eventTypeIDs": 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.