#nanzepanze-iOS-payment-identifier
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Not fully clear on the flow you're trying to implement here ๐
Can you expand? Also, if you're following a guide then feel free to drop the link here
Hi @maiden lantern! When a customer makes a payment through my website I get an email from Stripe that a payment has been made. Unfortunately, it doesn't contain some information that I need to process the customer's order. What I end up doing is logging into the Stripe Dashboard, going to the payment and there's the info such as the payment identifier. This all works fine except becomes a bit tedious when I'm travelling. Looking for a solution I started with the official Stripe iOS app hoping it would provide the info instead of me logging into the Dashboard. It doesn't. So I'm exploring some other way to get the payment identifier in an automated fashion.
Does that make sense?
I'm basically looking to streamline my own workflow ๐
I see. Generally, we recommend setting up a webhook endpoint and listen for events server-side in real time
https://stripe.com/docs/webhooks
Then you can have write some logic on your webhook endpoint to send you rich notifications (ie. notifications that has more information)
Ok does Stripe provide its own serverless service for webhooks or I'd need to use Cloudflare Workers or similar?