#Rajshree-dupe-payments
1 messages · Page 1 of 1 (latest)
pi_3LSxkzEI3ln3HtoV0gMCN1QU
pi_3LSxlXEI3ln3HtoV0TUZ06qq
these two seems additional payments
What makes you think they're duplicate charges? They seem to originate from your integration:
pi_3LSxkzEI3ln3HtoV0gMCN1QUwas created here: https://dashboard.stripe.com/logs/req_AFBnmvodmoHxrKpi_3LSxlXEI3ln3HtoV0TUZ06qqwas created ~30 seconds later by another API call: https://dashboard.stripe.com/logs/req_IcaHHmM2sl5l4i
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hard to diagnose the issue without familiarity of your integration
But those payments were facilitated by 2 unique API requests sent by your app/site
the messages are ditto same and within the same min , may be user refreshed page multiple times.
Is it possible to block such repeated requests to Stripe?
or user can be restricted to have one subscription at a time?
That's something you should guard against
Okay, so there is no such setting possible in stripe. Just wanted to make sure.
We don't limit that, you'd need to check for that yourself. Pass customer param to https://stripe.com/docs/api/subscriptions/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
got it, thanks for your help on this.
One more question, for reversing this addiitonal charges to user.
Should we just delete the two new subscriptions from dashboard?
and how do we handle refund?
You can delete/cancel them if that's necessary, yep. That won't trigger an automatic refund though
What will happen instead is the customer balance will be credited for the unused time. You should manually refund the Payment Intent, and re-adjust the customer balance
np!