Search actions
Returns a paginated list of actions within the requested time window. The response is scoped to the tenant identified by the access token — there is no tenantId parameter on this endpoint, and cross-tenant reads are not possible.
Query parameters
Start of the time window, Unix epoch time in milliseconds.
End of the time window, Unix epoch time in milliseconds.
Pagination offset. Maximum 10000.
Page size. Maximum 400.
Field name to sort by. Must be one of the listed values.
Field to sort by. Defaults to issued_at.
Sort direction. Defaults to DESC.
URL-encoded JSON describing the filter expression. One of: a single { field, operator, value } condition, an { and: [conditions...] } group, or an { or: [conditions...] } group. One level deep.
{
"and": [
{
"operator": "eq"
}
],
"or": [
{
"operator": "eq"
}
],
"operator": "eq"
}URL-encoded JSON array of field names to include in each item. When omitted, only id, issued_at, context.action_id, and context.action_performed_at are populated with real data; all other fields contain empty or zero default values. Specify the fields required by your integration to populate them with meaningful data.
Response
Paginated list of actions for the requested window.