Sync contacts and send emails triggered by events in Stripe.
checkout.session.completed
customer.created
customer.deleted
customer.updated
invoice.paid
invoice.payment_failed
invoice.upcoming
customer.deleted
event can be used to delete or unsubscribe your Stripe customers from your Loops audience.
customer.*
webhook by creating a new customer in the Customers page in Stripe.
You can also use the Stripe CLI tool to mimic events, by using the trigger
command.
You can see all sent webhooks by going to Developers -> Webhooks and then clicking on an endpoint.
On Loops’ end, You will see new contacts appear in your Audience page, and triggered events in the Events page.
customer.created
and customer.updated
events and paste in your endpoint’s URL.customer.created
and customer.updated
are toggled on on the Stripe settings page.newStripeCustomer
(or something similar).customer.created
event and paste in your endpoint’s URL.customer.created
is toggled on, and select the event name you chose in Step 2 from the Trigger an event field.stripeCheckout
(or something similar).checkout.session.completed
event and paste in your endpoint’s URL.checkout.session.completed
is toggled on, and select the event name you chose in Step 2 from the Trigger an event field.successfulPayment
(or something similar).invoice.paid
event and paste in your endpoint’s URL.invoice.paid
is toggled on, and select the event name you chose in Step 2 from the Trigger an event field.failedPayment
(or something similar).invoice.payment_failed
event and paste in your endpoint’s URL.invoice.payment_failed
is toggled on, and select the event name you chose in Step 2 from the Trigger an event field.