list-geographic-access-countries
dci list-geographic-access-countries
Returns the canonical ISO 3166-1 alpha-2 country catalogue used by geographic access policies.
Output
OK
By default dci renders the result as a table. Use --output json to get the full structure described below — see Output formats.
| Field | Type | Description |
|---|---|---|
countries | array of object | |
countries[].countryCode | string | Canonical ISO 3166-1 alpha-2 country code. |
countries[].name | string | Canonical English display name. |
Example response (--output json)
{
"countries": [
{
"countryCode": "GB",
"name": "United Kingdom"
},
{
"countryCode": "US",
"name": "United States"
}
]
}
Raw JSON schema
{
"type": "object",
"additionalProperties": false,
"required": [
"countries"
],
"properties": {
"countries": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"countryCode",
"name"
],
"properties": {
"countryCode": {
"type": "string",
"pattern": "^[A-Z]{2}$",
"description": "Canonical ISO 3166-1 alpha-2 country code.",
"example": "GB"
},
"name": {
"type": "string",
"description": "Canonical English display name.",
"example": "United Kingdom"
}
}
}
}
}
}
Errors
On failure, dci prints a single error message — with a hint when one is available — and exits with a typed code your scripts can branch on. See Errors and exit codes for the full contract.
| HTTP status | Exit code | Error code | Meaning |
|---|---|---|---|
| 400 | 30 | VALIDATION_ERROR | The arguments or request body were rejected. Review the command's flags and payload. |
| 401 | 10 | AUTHENTICATION_FAILED | Not signed in, or the API token is invalid. Run dci login or check DCI_API_KEY. |
| 403 | 11 | PERMISSION_DENIED | The DoiT user or the active customer context does not have access. |
| 429 | 50 | RATE_LIMITED | Too many requests. Retryable — the CLI reports the server-provided delay. |
| 503 | 40 | API_SERVER_ERROR | The API failed to process the request. Retryable; contact DoiT support if it persists. |
Aliases: listgeographicaccesscountries