action openfintech_get_deposit_methods { label: "List of deposit methods" description: "Returns list of deposit methods. Each object contains information about deposit method such as name and category, also related link to deposit method issuer (which processing it).\n" provider: openfintech method: GET path: "/deposit-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 } }