action velopayments_list_supported_countries_v2 { label: "List Supported Countries" description: "List the supported countries." provider: velopayments method: GET path: "/v2/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." } regions: { type: "array" items: { type: "object" properties: { abbreviation: { type: "string" } name: { type: "string" } } } } } } } } } }