v1
latestOpenAPI 3.0.32026-07-26208618579.9 KBGet Fraud Case
List fraud cases for a card
Returns a paginated list of fraud cases associated with the card identified by {cardId}.
- Results are ordered by createdTime descending (newest first).
- Supports OData-style filter on status, plus date-range filtering via fromDate/toDate applied to createdTime.
get/v1/card/{cardId}
Path parameters
cardIdstring biginteger required
The card id to fetch list of fraud cases for
Query parameters
auditUserstring required
The audit user to log the request
filterstring
OData-style filter supporting only the eq operator and OR connector for the status field.
- Keywords (status, eq, OR) and values are case-insensitive.
- Allowed status values: OPEN, PENDING, CLOSED.
- Values must be enclosed in single quotes.
- Clients must URL-encode spaces (%20) and quotes (%27) when sending as a query parameter.
Supported syntax: status eq 'VALUE' [ OR status eq 'VALUE' ]
fromDatestring date-time
Example:2025-07-01T00:00:00Z
ISO-8601 date-time to filter cases with createdTime on or after this timestamp.
toDatestring date-time
Example:2025-07-02T00:00:00Z
ISO-8601 date-time to filter cases with createdTime on or before this timestamp.
pageinteger
Page number for pagination
sizeinteger
Number of items per page
Response
Successful retrieval of fraud cases
Example response
{
"cases": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "OPEN",
"cardId": "54321",
"createdTime": "2025-07-01T10:00:00Z",
"lastUpdatedTime": "2025-07-02T14:30:00Z",
"transactionCount": 3
}
]
}