action qualpay_refund { label: "Refund Previously Captured Transaction" description: "Returns money to the cardholder from a previously captured transaction. Multiple refunds are allowed per captured transaction, provided that the sum of all refunds does not exceed the original captured transaction amount. Authorizations that have not been captured are not eligible for a refund." provider: qualpay method: POST path: "/refund/{pgIdOrig}" encoding: json input: { type: "object" properties: { pgIdOrig: { type: "string" } } required: ["pgIdOrig"] additionalProperties: false } output: { type: "object" additionalProperties: true } }