v1
latestOpenAPI 3.0.32026-07-24148824715.6 KBAudit
Get audit log for a transaction
Returns the audit log trail for a transaction.
You need the "View transactions" permission to use this endpoint.
get/v2/audit/transactions/{transaction_identifier}
Path parameters
transaction_identifierstring uuid required
The transaction identifier
Query parameters
page_numberinteger
Page index
page_sizeinteger
The size of the page to be returned
sortstring[]
Sorting criteria in the format (-)?[parameter]. Default sort order is ascending. for descending prefix the parameter with - Multiple sort criteria are supported.
Response
Returns the audit log trail for the transaction.
Example response
{
"audit_logs": [
{
"detail": {
"case": {
"identifier": "018d0dd4-9b7c-7537-aaac-13f2f48877af"
},
"risk_identifiers": [
"018d0dd4-9b7c-7537-aaac-13f2f48877af"
],
"transaction": {
"identifier": "018d0dd4-9b7c-7537-aaac-13f2f48877af",
"type": "BANK_PAYMENT",
"version": 1
}
},
"grouping_key": "transaction-group-123",
"identifier": "018d0dd4-9b7c-7537-aaac-13f2f48877af",
"occurred_at": "2024-01-15T10:30:00.000Z"
}
],
"first": "/v1/resource?page_number=1",
"next": "/v1/resource?page_number=4",
"prev": "/v1/resource?page_number=2",
"self": "/v1/resource?page_number=3",
"total_count": 60
}