stripe.closeDispute only when you intend to stop contesting a dispute. Closing is irreversible.
automations/stripe-close-dispute.automation.ts
Inputs
disputeId is required. idempotencyKey is optional.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Close a Stripe dispute and accept it as lost.
stripe.closeDispute only when you intend to stop contesting a dispute. Closing is irreversible.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("Close dispute", () => {
onDashboardRun({ title: "Close dispute" })
stripe.closeDispute({ disputeId: "du_123" })
})
disputeId is required. idempotencyKey is optional.