action envoice_payment_api_supported { label: "Return all supported payment gateways (no currencies means all are supported)" provider: envoice method: GET path: "/api/payment/supported" encoding: json input: { type: "object" properties: { "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { Name: { type: "string" description: "Name of the payment gateway" } SupportedCurrencies: { type: "array" description: "List of supported currencies." items: { type: "object" properties: { Name: { type: "string" description: "Name of the currency" } Value: { type: "string" description: "Currency short code" } } } } } } } }