Short answer: You can list payment intents in Stripe by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Stripe List Payment Intents action to a workflow, map its 3 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Limit limit | string | Optional | Number of results to return (1-100) |
Customer ID customer | string | Optional | Stripe customer ID — starts with 'cus_'. Find via List Customers. |
Starting After starting_after | string | Optional | Cursor for pagination — pass the last payment intent ID from the previous page |
{"limit": "10","customer": "cus_abc123","starting_after": "pi_abc123"}
{"data": [{"id": "pi_abc123","amount": 2000,"object": "payment_intent","status": "succeeded","currency": "usd","customer": "cus_abc123"}],"object": "list","has_more": true}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.