action qualpay_capture { label: "Capture an Authorized Transaction" description: "Captures an authorized transaction for any amount up to the amount originally authorized. An authorized transaction can only be captured once." provider: qualpay method: POST path: "/capture/{pgIdOrig}" encoding: json input: { type: "object" properties: { pgIdOrig: { type: "string" } } required: ["pgIdOrig"] additionalProperties: false } output: { type: "object" additionalProperties: true } }