stripe.getSetupIntent to inspect a saved-payment setup flow.
automations/stripe-get-setup-intent.automation.ts
Inputs
setupIntentId is required. Use expand for supported nested resources.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Stripe SetupIntent by ID.
stripe.getSetupIntent to inspect a saved-payment setup flow.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("Get SetupIntent", () => {
onDashboardRun({ title: "Get SetupIntent" })
stripe.getSetupIntent({ setupIntentId: "seti_123" })
})
setupIntentId is required. Use expand for supported nested resources.