stripe.listRefunds to list Stripe refunds with charge, PaymentIntent, and creation filters.
Example
automations/stripe-list-refunds.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List Stripe refunds with charge, PaymentIntent, and creation filters.
stripe.listRefunds to list Stripe refunds with charge, PaymentIntent, and creation filters.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("List refunds", () => {
onDashboardRun({ title: "List refunds" })
stripe.listRefunds({ paymentIntent: "pi_123", limit: 25 })
})