#MorrisMustang
1 messages · Page 1 of 1 (latest)
hello! no, there's no way to merge Customers if that's what you're asking. You can list Checkout Sessions by customer email : https://stripe.com/docs/api/checkout/sessions/list#list_checkout_sessions-customer_details-email to find the corresponding Subscription ID.
If you want to prevent duplication of customers, you would want to implement Checkout Sessions instead where you can explicitly pass in a Customer ID : https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer
How does it work with the customer portal in the case of duplicate customers?
my customer had mentioned only seeing one of the two subscriptions
Also, i do plan to use checkout sessions, I just seized the opportunity to get my first paying customer lol
https://stripe.com/docs/no-code/customer-portal#share
If there are multiple customers with the same email address, Stripe selects the most recently created customer with that email and an active subscription.
once you have Checkout Sessions up and running, i would probably "migrate" the previous subscription on Customer A to Customer B - by cancelling the subscription on Customer A, and recreating it on Customer B