#taviksha-akar_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1331559755323543632
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
You'll need to update the Customer details first before creating its Subscription
ok , means the billing address for a subscription is not at subscription level and its only on customer level ?
It is at the Customer level:
https://docs.stripe.com/api/customers/object#customer_object-address
And at the payment method level:
https://docs.stripe.com/api/payment_methods/object#payment_method_object-billing_details
But on one subscription, I want different address and on another I want diffrent billing address so if i update customer address before creating another subscription, than that address will be shown on first subscription upcming invoices also
So I think you'll need to create multiple Stripe Customer objects which references the same end customer
You can use the same email/phone for all these Customer objects
Ok thanks.