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.
Security
risk_access_token
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.
- Sandbox environmenthttps://api.sbx.transmitsecurity.io/risk/v1/search/actions
- US production environmenthttps://api.transmitsecurity.io/risk/v1/search/actions
- EU production environmenthttps://api.eu.transmitsecurity.io/risk/v1/search/actions
- CA production environmenthttps://api.ca.transmitsecurity.io/risk/v1/search/actions
- AU production environmenthttps://api.au.transmitsecurity.io/risk/v1/search/actions
- JP production environmenthttps://api.gasne1-ts01.transmitsecurity.io/risk/v1/search/actions
curl -i -X GET \
'https://api.sbx.transmitsecurity.io/risk/v1/search/actions?start_time=1779600000000&end_time=1779686400000&skip=0&take=100&sort_field=id&order=ASC&filters=and%3D%5Bobject%20Object%5D%26or%3D%5Bobject%20Object%5D%26field%3Did%26operator%3Deq%26value%3Dstring&fields=id&hash_filter_values=false' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
- A single denied login returned
- No actions in the requested window
{ "items": [ { … } ], "count": 1, "skipped": 0 }