stripe.getPayout to inspect a manual or automatic payout.
automations/stripe-get-payout.automation.ts
Inputs
payoutId 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 payout by ID.
stripe.getPayout to inspect a manual or automatic payout.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("Get payout", () => {
onDashboardRun({ title: "Get payout" })
stripe.getPayout({ payoutId: "po_123" })
})
payoutId is required. Use expand for supported relationships.