v1

latestOpenAPI 3.0.32026-07-24148824715.6 KB
Audit

Get audit log for a case

Returns the audit log trail for a case.

You need one of the "View cases", "View cases (customer onboarding)", "View cases (customer monitoring)", "View cases (payment screening)" or "View cases (transaction monitoring)" permissions to use this endpoint.

get/v2/audit/cases/{case_identifier}

Path parameters

case_identifierstring uuid required

The case 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 case.

firststring required

The URL path to the first page.

nextstring nullable

The URL path to the next page.

prevstring nullable

The URL path to the previous page.

selfstring required

The URL path to the current page.

total_countinteger nullable

Total number of items.

Example response

{
  "audit_logs": [
    {
      "detail": {
        "case": {
          "identifier": "018d0dd4-9b7c-7537-aaac-13f2f48877af"
        }
      }
    }
  ],
  "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
}