Short answer: In TinyCommand, add the Stripe Payment Succeeded trigger to a workflow and publish. It listens through a Stripe webhook and fires your workflow within seconds of the event, with no polling and no code. Add a filter if you only want some events to start a run.
Drop it on the canvas. Configure a couple of fields. Publish.
You don’t need to read this. TinyCommand auto-maps every field into the visual picker so downstream nodes can pull values by clicking. We show it here for power users who want to know what’s on the wire.
{"amount": 100,"status": "succeeded","created": 1778804246,"currency": "usd","customer": null,"event_id": "evt_xxx","livemode": false,"event_type": "payment_intent.succeeded","description": null,"occurred_at": 1778804246,"receipt_email": null,"payment_method": "pm_xxx","amount_received": 100,"payment_intent_id": "pi_xxx"}
Every field below can be referenced by name in any action or filter that comes after this trigger.
| Field | Type | Example |
|---|---|---|
| amount | number | 100 |
| status | string | "succeeded" |
| created | number | 1778804246 |
| currency | string | "usd" |
| customer | null | null |
| event_id | string | "evt_xxx" |
| livemode | boolean | false |
| event_type | string | "payment_intent.succeeded" |
| description | null | null |
| occurred_at | number | 1778804246 |
| receipt_email | null | null |
| payment_method | string | "pm_xxx" |
| amount_received | number | 100 |
| payment_intent_id | string | "pi_xxx" |