action velopayments_list_supported_countries_v1 { label: "List Supported Countries" description: "
List the supported countries.
\nThis version will be retired in March 2020. Use /v2/supportedCountries
\n" provider: velopayments method: GET path: "/v1/supportedCountries" encoding: json output: { type: "object" properties: { countries: { type: "array" items: { type: "object" properties: { currencies: { type: "array" items: { type: "string" description: "Valid ISO 4217 3 letter currency code. See the ISO specification for details." } } isoCountryCode: { type: "string" description: "Valid ISO 3166 2 character country code. See the ISO specification for details." } } } } } } }