GET /v2/accounts/:id Fetch one account. Path params: id (required) — Account identifier. Response (200 OK): { "data": { "id": "string", "type": "account", "attributes": { "name": "string (optional)", "externalIdentifier": "string", "ccyCode": "string — ISO 4217", "excludeFromReporting": "boolean" }, "relationships": { "legalEntity": { "data": { "type": "legal-entity", "id": "string" } }, "depository": { "data": { "type": "depository", "id": "string" } | null }, "depositories": { "data": [ { "type": "depository", "id": "string" } ] } } } }