v1

latestOpenAPI 3.0.32026-07-24148824715.6 KB
Cases

Retrieve the alerts for a case

Returns a paginated list of alerts associated with a case.

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

get/v2/cases/{case_identifier}/alerts

Path parameters

case_identifierstring uuid required

The unique identifier of the case.

Query parameters

identifierstring uuid

Filter alerts by alert identifier

statesstring[]

Filter alerts by states

page_numberinteger

One-based page index (1..N)

page_sizeinteger

The size of the page to be returned

sortstring[]

Sorting criteria in the format of: [-]property (- descending modifier).

  • Default sort order is ascending (without -).

  • Multiple sort criteria are supported.

Response

OK

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

{
  "alerts": [
    {
      "title": "Customer screening"
    }
  ],
  "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
}