GET /v2/clients/:id/users List users owned by a client. Path params: id (required) — Client identifier. Response (200 OK): { "data": [ { "id": "string", "type": "user", "attributes": { "firstName": "string", "lastName": "string", "contactEmail": "string" }, "relationships": { "client": { "data": { "type": "client", "id": "string" } }, "readAccessToReportingEntities": { "data": [ { "type": "reporting-entity", "id": "string" } ] } } } ] }