stripe.listPayouts to reconcile recent bank transfers and monitor failures.
automations/stripe-list-payouts.automation.ts
Inputs
Filter by destination, creation time, or status.limit accepts 1–100; use Stripe cursor fields for another page.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List Stripe payouts with filters and pagination.
stripe.listPayouts to reconcile recent bank transfers and monitor failures.
import { automation, onDashboardRun } from "automate.ax"
import { stripe } from "automate.ax/stripe"
export default automation("List payouts", () => {
onDashboardRun({ title: "List payouts" })
stripe.listPayouts({ status: "pending", limit: 25 })
})
limit accepts 1–100; use Stripe cursor fields for another page.