flowcheck_get_payout
Retrieve payout details from Stripe or Shopify with matched bank transactions and confidence scores to verify financial transactions and detect discrepancies.
Instructions
Get a single payout (Stripe or Shopify) with matched bank transaction details and confidence score.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Stripe payout ID |
Implementation Reference
- src/tools/payouts.ts:52-67 (handler)The registration and handler implementation for the flowcheck_get_payout tool. It uses the client to request a single payout by ID.
server.registerTool( "flowcheck_get_payout", { title: "Get Payout", description: "Get a single payout (Stripe or Shopify) with matched bank transaction details " + "and confidence score.", inputSchema: z.object({ id: z.string().describe("Stripe payout ID"), }), }, async ({ id }) => { const result = await client.request("GET", `/payouts/${id}`); return { content: [{ type: "text" as const, text: result }] }; }, );