Retrieves the complete list of all supported countries
Use this endpoint to populate country selection dropdowns when creating or editing accounts, places, or vendors.
The list is static and includes all countries supported by the system.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
Country
| Property | Description | Type |
|---|---|---|
| alpha2Code | string | |
| countryId | integer (int32) | |
| name | string | |
| possibleSpellings | string[] |
Example Response
[
{ "alpha2Code": "string", "countryId": 1, "name": "string", "possibleSpellings": [
"string"
]
}
]