#romain342b
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
billing addresses are tied to payment methods
so technically yes
How Can i do ?
even if it's the same (for example) card, you would have 2 Payment Methods each one being used by a different subscription
I will explain my workflow
yes please do
We have a platform that allows the user to create their own products for a subscription (months/years). When creating each product we ask the user to select their billing address (which they can possibly modify or create a new one). Then the user selects their Stripe card and proceeds to pay for their subscription.
To summarize each product with a subscription, linked to a card with a billing address (which can therefore be different for each product).
We then display the list of invoices for each product on our site.
Problem: On Stripe you can only have one global billing address. I therefore cannot link the billing address chosen to the creation of the product with a particular subscription.
Problem: On Stripe you can only have one global billing address
that's not correct
as I explained before billing addresses are tied to the Payment Method object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
so you need to collect/create as many Payment Methods as Billing Addresses in order to have separate ones for separate subscriptions
hum