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