Finding last entitlement aggregation via the API

Is it possible to see something like the “Aggregation Activity Log” in the UI via the API? It appears it’s pulling from the private API

https://chk.api.identitynow.com/cc/api/event/list

and then adding query parameters to narrow it down to an entitlement aggregation for a specific source.

Is there a published API where I can get this data? I’d rather not rely on a private API for it.

Hi Mark,

You might try the list account activities API or using Search to search for events. If you can find the correct search query, then you can use it in the search API.

1 Like

This query worked on the search endpoint

{
    "indices": [
        "events"
    ],
    "query": {
        "query": "operation:AGGREGATE AND attributes.sourceName:\"Active Directory\" AND technicalName:SOURCE_ENTITLEMENT_AGGREGATE_PASSED"
    },
    "sort": [
        "-created"
    ]
}
1 Like