Logo
Fireblocks API Documentation

Get audit logs

GET {{baseUrl}}/management/audit_logs

Get all audits

 

Body PARAM

Key Datatype Required Description 
timePeriod
string The last time period to fetch audit logs
cursor
string The next id to start fetch audit logs from



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "data": [ { "id": "<string>", "timestamp": "<string>", "createdAt": "<string>", "user": "<string>", "subject": "<string>", "event": "<string>", "tenantId": "<string>", "userId": "<string>" }, { "id": "<string>", "timestamp": "<string>", "createdAt": "<string>", "user": "<string>", "subject": "<string>", "event": "<string>", "tenantId": "<string>", "userId": "<string>" } ], "cursor": "<string>", "total": "<number>" }



Curl
curl -X GET 'https://api.fireblocks.io/v1/management/audit_logs?timePeriod=DAY&cursor=<string>' -H 'Accept: application/json'

ENDPOINTS