action openfintech_get_payment_methods { label: "List of payment methods" description: "Returns list of payment methods. Each object contains information about payment method such as name and category, also related link to payment method issuer (which processing it).\n" provider: openfintech method: GET path: "/payment-methods" encoding: json input: { type: "object" properties: { "filter[category]": { type: "string" } "filter[processor_name]": { type: "string" } "filter[search]": { type: "string" } sort: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }