Overview of Stripe integration capabilities
{ "api_key": "sk_test_...", "webhook_secret": "whsec_...", "environment": "test" // or "production" }
payment_intent.succeeded
payment_intent.failed
customer.subscription.created
customer.subscription.updated
invoice.paid
invoice.payment_failed
{ "steps": [ { "type": "stripe.createCustomer", "params": { "email": "customer@example.com", "source": "tok_visa" } }, { "type": "stripe.createSubscription", "params": { "customer": "{{steps.createCustomer.id}}", "items": [ { "price": "price_H5ggYwtDq4fbrJ" } ] } } ] }