action mist_get_country_codes { label: "getCountryCodes" description: "Get List of available Country Codes" provider: mist method: GET path: "/api/v1/const/countries" encoding: json output: { type: "array" items: { type: "object" required: ["alpha2", "numeric", "name", "certified"] properties: { alpha2: { type: "string" } certified: { type: "boolean" } name: { type: "string" } numeric: { type: "number" } } } } }