#ssmaameri
1 messages · Page 1 of 1 (latest)
How are you trying to reconcile those payments today? In a webhook?
Webhook is probably the ideal way, though not sure how to test that on localhost.
Current way am doing it feels quite hacky, which is getting a list of all charges, and filtering them out by the charge.billing_details.email value to match with a users email on my system
Webhook is probably the ideal way, though not sure how to test that on localhost.
You'd use the CLI: https://stripe.com/docs/stripe-cli/overview
Probably want to utilise the client_reference_id parameter on your PL (https://stripe.com/docs/payments/payment-links#url-parameters) which is then available on checkout.session.completed webhook events, along with the associated payment_intent ID
THis looks exactly like what I want. Thank you!
Wow the discord was super useful. Was not expecting that fast of a response. Thanks!
Happy to help!