GET /v2/clients/:id/limits List all limits owned by a client. Path params: id (required) — Client identifier. Response (200 OK): { "data": [ { "id": "string (UUID)", "type": "limit", "attributes": { "name": "string", "ccyCode": "string — ISO 4217", "startDate": "ISO 8601 date", "limitFilter": , "limitType": }, "relationships": { "client": { "data": { "type": "client", "id": "string" } }, "parentLimit": { "data": { "type": "limit", "id": "string" } | null } } } ] }