v1
latestOpenAPI 3.1.02026-07-242735131.1 MBLegal Entities
Show contractor eligibility and COR-supported countries for legal entity
Returns which contractor products (standard, plus, cor) the legal entity is eligible to use, and the list of country codes where COR is supported for this legal entity. COR-supported countries exclude sanctioned and signup-prevented countries and apply entity rules (same-country, local-to-local). When the legal entity is not COR-eligible, cor_supported_country_codes is an empty list.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (company_admin) | View companies (company:read) | Manage companies (company:write) |
get/v1/companies/{company_id}/legal-entities/{legal_entity_id}/contractor-eligibility
Path parameters
company_idstring uuid required
Identifier of the employment being terminated.
Example:663e0b79-c893-45ff-a1b2-f6dcabc098b5
Company ID
legal_entity_idstring uuid required
Identifier of the employment being terminated.
Example:663e0b79-c893-45ff-a1b2-f6dcabc098b5
Legal entity ID
Response
Success
Example response
{
"data": {
"contractor_eligibility": {
"cor": false,
"ineligibility_reasons": {
"cor": [
"company_not_enrolled_in_product"
],
"plus": [],
"standard": []
},
"plus": true,
"standard": true
},
"cor_supported_country_codes": [
"USA",
"GBR",
"DEU"
]
}
}