stripe.getPaymentMethod to inspect a reusable payment method.
automations/stripe-get-payment-method.automation.ts
Inputs
paymentMethodId is required. Use expand for supported relationships.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Stripe PaymentMethod by ID.
stripe.getPaymentMethod to inspect a reusable payment method.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("Get PaymentMethod", () => {
onDashboardRun({ title: "Get PaymentMethod" })
stripe.getPaymentMethod({ paymentMethodId: "pm_123" })
})
paymentMethodId is required. Use expand for supported relationships.