Stripe Payment Received
Triggers when a Stripe payment event (invoice.paid) is received via your connected Stripe account.
Trigger Commerce
Triggers when a Stripe payment event (invoice.paid) is received via your connected Stripe account.
At a Glance
| Field | Value |
|---|---|
| Trigger ID | stripe-payment-receive |
| Category | Commerce |
| Tags | stripe, payment, billing, webhook |
Trigger Configuration
This trigger does not require configuration fields.
Trigger Result
| Field | Type | Required | Description |
|---|---|---|---|
triggeredAt | string | Yes | - |
event | object | Yes | Full Stripe event object (pass-through) |
Workflow Root Example
json{ "nodes": { "root": { "type": "stripe-payment-receive", "payload": {}, "children": [ "log_event" ] }, "log_event": { "type": "log", "payload": { "message": "Triggered at {{$trigger.triggeredAt}}" }, "children": [] } }}
Downstream nodes can use {{$trigger.triggeredAt}} and any result fields listed above. Event triggers usually expose the raw source payload under a field such as event, body, trade, or raw.
