#_junkinthetrunk
1 messages · Page 1 of 1 (latest)
Hello! Can you share the subscription (sub_123) ID with me so I can take a closer look?
Okay I pulled the ID from the screenshot
Thank you! I was just about to paste them. You’re super quick haha.
Your API is making two separate requests to the /v1/subscriptions endpoint, so two subscriptions are being created:
- https://dashboard.stripe.com/logs/req_BzATVr2XVXpL7a -> This one created the subscription with the coupon
- https://dashboard.stripe.com/logs/req_4RAFLumj3re0Wb -> This one created the subscription w/o the coupon
The only different between those two requests is what you're passing us for coupon
So somewhere in you're code you're accidentally making two requests, and you need to find out where
Thank you so much!