Trigger Commerce

Triggers when a Stripe payment event (invoice.paid) is received via your connected Stripe account.

At a Glance

FieldValue
Trigger IDstripe-payment-receive
CategoryCommerce
Tagsstripe, payment, billing, webhook

Trigger Configuration

This trigger does not require configuration fields.

Trigger Result

FieldTypeRequiredDescription
triggeredAtstringYes-
eventobjectYesFull 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.

Ask a question... ⌘I