POST /v2/clients/:id/legal-entities Create a new legal entity owned by a client. Path params: id (required) — Client identifier. Request: { "data": { "type": "legal-entity", "attributes": { "name": "string (required)" } } } Response (201 Created): { "data": { "id": "string", "type": "legal-entity", "attributes": { "name": "string" }, "relationships": { "client": { "data": { "type": "client", "id": "string" } }, "accounts": { "data": [] }, "depositories": { "data": [] } } } }