latestOpenAPI 3.0.3MIT2026-08-124627160.3 KB

c04c2c708bf9

Country Permissions

Update country permission

Update the requested country permission.

put/countryPermissions/{isoCode}

Request body

isoCodestring

The ISO code of the country

namestring

Country name in english

continentstring

Continent of the country

countryDialingCodesstring[]

The country calling codes as an array, most countries have only one but some have multiple like the San Marino, China, and a few others.

enabledboolean required

If the country is enabled or not. When this is enabled regular numbers can be dialed from the account.

Example request

{
  "isoCode": "US",
  "name": "United States/Canada",
  "continent": "North America",
  "countryDialingCodes": [
    "+1"
  ],
  "enabled": true
}

Response

The updated country permission

isoCodestring

The ISO code of the country

namestring

Country name in english

continentstring

Continent of the country

countryDialingCodesstring[]

The country calling codes as an array, most countries have only one but some have multiple like the San Marino, China, and a few others.

enabledboolean required

If the country is enabled or not. When this is enabled regular numbers can be dialed from the account.

Example response

{
  "isoCode": "US",
  "name": "United States/Canada",
  "continent": "North America",
  "countryDialingCodes": [
    "+1"
  ],
  "enabled": true
}