Stripe

Available Stripe triggers for automating workflows

Stripe provides 1 trigger for automating workflows based on events.

Triggers

Stripe Webhook

Triggers when Stripe events occur (payments, subscriptions, invoices, etc.)

Configuration

ParameterTypeRequiredDescription
eventTypesstringNoSelect specific Stripe events to filter. Leave empty to receive all events from Stripe.
webhookSecretstringNoYour webhook signing secret from Stripe Dashboard. Used to verify webhook authenticity.

Output

ParameterTypeDescription
idstringUnique identifier for the event
typestringEvent type (e.g., payment_intent.succeeded, customer.created, invoice.paid)
objectstringAlways "event"
api_versionstringStripe API version used to render the event
creatednumberUnix timestamp when the event was created
datajsonEvent data containing the affected Stripe object. Structure varies by event type - access via data.object for the resource (PaymentIntent, Customer, Invoice, etc.)
livemodebooleanWhether this event occurred in live mode (true) or test mode (false)
pending_webhooksnumberNumber of webhooks yet to be delivered for this event
requestjsonInformation about the API request that triggered this event (id, idempotency_key)

On this page