action velopayments_list_supported_currencies_v2 { label: "List Supported Currencies" description: "List the supported currencies." provider: velopayments method: GET path: "/v2/currencies" encoding: json output: { type: "object" properties: { currencies: { type: "array" items: { type: "object" properties: { currency: { type: "string" description: "Valid ISO 4217 3 letter currency code. See the ISO specification for details." } maxPaymentAmount: { type: "integer" description: "The max amount allowed in this currency" } } } } } } }