Your best bet is going to be either the CLI or API explorer
If you are just looking for last 14 days like the UI use https://developer.genesys.cloud/devapps/api-explorer#post-api-v2-audits-query-realtime
If you want to look back further than 14 days, use https://developer.genesys.cloud/devapps/api-explorer#post-api-v2-audits-query from there you will need to check status, then call the results api to get those when it is complete.
Example Body for real time API to give changes to Queues :
{
"interval": "2024-01-15T00:00:00.000+12:00/2024-01-22T00:00:00.000+12:00",
"serviceName": "ContactCenter",
"filters": [
{
"property": "EntityType",
"value": "Queue"
}
],
"sort": [
{
"name": "Timestamp",
"sortOrder": "desc"
}
]
}
------------------------------
Anton Vroon
------------------------------