action beanstream_post_payments_trans_id_completions { label: "Complete pre-auth" description: "Complete a pre-authorized payment. The amount of the transaction to complete must be less than or equal to the original pre-auth amount. Complete must be set to true." provider: beanstream method: POST path: "/payments/{transId}/completions" encoding: json input: { type: "object" properties: { transId: { type: "string" } } required: ["transId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }