GET /destinations/:iso3

Returns information regarding the coverage offered for a specific Destination

Query parameters

  • iso3 string

    iso3 for Destination

Responses

  • 200 application/json

    Destination coverage fetched successfully

    Hide response attributes Show response attributes object
    • name string
    • isoAlpha3 string
    • scopes object
      Hide scopes attributes Show scopes attributes object
      • local boolean
      • regional boolean
      • global boolean
GET /destinations/:iso3
curl \
 --request GET 'https://zim.api.dev.zimconnections.com/destinations/:iso3' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "name": "France",
  "scopes": {
    "local": true,
    "global": true,
    "regional": true
  },
  "isoAlpha3": "FRA"
}