stripe.listPaymentIntents to list Stripe PaymentIntents with customer and creation filters.
Example
automations/stripe-list-payment-intents.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 PaymentIntents with customer and creation filters.
stripe.listPaymentIntents to list Stripe PaymentIntents with customer and creation filters.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("List PaymentIntents", () => {
onDashboardRun({ title: "List PaymentIntents" })
stripe.listPaymentIntents({ customer: "cus_123", limit: 25 })
})