cURL
curl --request GET \ --url https://api.example.com/api/v2/cases
{ "page": 123, "pageSize": 123, "total": 123, "items": [ { "id": "<string>", "type": "<string>", "branchId": "<string>", "feeEarnerId": "<string>", "propertyPrice": 123, "propertyCurrency": "<string>", "reference": "<string>", "createdAt": "2023-11-07T05:31:56Z", "archivedAt": "2023-11-07T05:31:56Z" } ] }
Returns a paginated list of cases. Archived cases are excluded unless includeArchived=true.
Page number (1-based)
x >= 1
Page size (default 20, max 100)
1 <= x <= 100
Include archived cases (soft-deleted)
Paginated list of cases
Current page number
Number of items per page
Total number of cases
Array of case objects
Show child attributes
Was this page helpful?