latestOpenAPI 3.1.0Proprietary - UrbanFox2026-08-101443106.2 KB

e99fd9028c60

Cases

List cases

List fraud cases for a tenant, optionally filtered by account or status.

get/v2/{tenant_slug}/cases

Path parameters

tenant_slugstring required

Tenant DNS slug (lowercase letters, digits, and hyphens; 3-100 characters).

Example:demo-retail

Tenant DNS slug (lowercase letters, digits, and hyphens; 3-100 characters).

Query parameters

status'OPEN' | 'CLOSED'

Filter cases by lifecycle status (OPEN or CLOSED). Omit to return cases in every status.

website_account_idstring nullable

Filter cases by the end-user account they originated from.

Filter cases by the end-user account they originated from.

user_is_blockedboolean nullable

Filter cases by whether the associated end-user account is blocked.

Filter cases by whether the associated end-user account is blocked.

Response

Successful Response

Example response

{
  "data": {
    "cases": [
      {
        "case_id": "case-abc123",
        "created_at": "2024-01-15T10:30:00Z",
        "overall_risk_score": 3,
        "status": "OPEN",
        "website_account_id": "account-abc123"
      }
    ]
  }
}