GET /v2/clients/:id/legal-entities List legal entities owned by a client. Path params: id (required) — Client identifier. Response (200 OK): { "data": [ { "id": "string", "type": "legal-entity", "attributes": { "name": "string" }, "relationships": { "client": { "data": { "type": "client", "id": "string" } }, "accounts": { "data": [ { "type": "account", "id": "string" } ] }, "depositories": { "data": [ { "type": "depository", "id": "string" } ] } } } ] }