My goal is to send an email on every successful Stripe payment. For the payments I am using either the Stripe invoice tool or a Stripe payment link.
When creating the Zap, I managed to find all the data for a successful payment via a Stripe invoice, but I cant seem to find the data for the product(name), or any customer ID when a user pays via a Stripe payment link.
Am I missing something here?
Hopefully there’s someone that can help me out.
Thanks!
Best answer by DanversBest answer by Danvers
Hi @cdwyer!
I did some digging and I can see that for the Checkout Session Completed trigger, sample (dummy) data is used and not real data. That’s why you can see the customer fields but there’s no data in them. When the Zap is on, the trigger will have the customer information.
If you can, set up your Zap with the test data that you have then turn on the Zap and check that everything is coming through as you need it. I know that’s a bit of a pain, sorry about that!
Thanks for helping. The issue, however is not the invoice items. Those I can find. But the weird part it, Stripe also offers what they call Payment Links (https://stripe.com/payments/payment-links ). Which uses the same products, that are also being used when creating a Stripe invoice. But somehow, the product name/ID/description is NOT in the data out stream, after a Payment Link payment.
But maybe I could try to create a webhook for this?
Thanks! This works for me, at least for the Payment Links payments. Not for the Invoice payments, which I expected also to work with this trigger, but maybe that is a different trigger all together?
Yes it does. But then when I also have the Checkout Session Completed trigger Zap activated, the user will receive 2 emails after a successful Payment Link payment. Since New Payment trigger also works when a Payment Link payment has been made…
Very possible I’m missing something here, but the Checkout Session Completed trigger seems to be missing quite a bit of data that should be there (based on the structure of the returned data).
For example, the data in Stripe’s dashboard for a checkout.session.completed event contains data like:
...while the Checkout Session Completed event data in a Zap seems to be missing most of that:
Is that intentional and/or a limitation of Stripe, somehow? Seems like some of those core data points (eg, customer_email) should be included in the response of that Checkout Session Completed trigger.
@Troy Tessalone that’s real data from Stripe (asterisks added by me). And (I think) we kinda have to use the Checkout Session Completed trigger in this case, because our second step is a Filter to only proceed if the session came from a specific Payment Link—and I don’t know that the Payment Link is available on other triggers (though would love to be told I’m wrong about that).
@Troy Tessalone Yep, so on #1, I thought about that—but even the Customer appears to be missing (the object, but also an ID that could be used for retrieval in a separate step):
...despite that (ie, customer ID) being a top-level data point in the Stripe event:
That was part of why I wondered if the CSC trigger was maybe quasi-broken, or “unintentionally incomplete”. I dunno. 🤷♂️ For the webhook bit, that could work...I was just kinda hoping for a quick setup here, and would prefer to avoid a separate webhook in Stripe for this one-off need.
I did some digging and I can see that for the Checkout Session Completed trigger, sample (dummy) data is used and not real data. That’s why you can see the customer fields but there’s no data in them. When the Zap is on, the trigger will have the customer information.
If you can, set up your Zap with the test data that you have then turn on the Zap and check that everything is coming through as you need it. I know that’s a bit of a pain, sorry about that!
I believe you, haha...but it looks like there’s not currently a way to test this (outside of rebuilding w/ webhooks). Guess we’ll just roll the dice for now on the live version, as we’ve got nothing to lose.
Appreciate you digging into the data side of things!
@Danvers no worries—that did end up working, so thanks again for your help! Would still be nice to have that testing issue (linked above) resolved, but good to know that this does work, at least for the data points we needed access to. 👍