#fdc8cd4cff2c19e0d1022e78481ddf36
1 messages ยท Page 1 of 1 (latest)
hi there!
made few corrections of typos ๐
- what do you mean by "payment session"? are you talking about Checkout Session or something else?
- is this about Subscriptions renewals, or are you talking in general?
OK, just saw your edits ๐
Its about Subscriptions in general I guess?
there are many settings about this here https://dashboard.stripe.com/settings/billing/automatic
What is they miss all of these emails?
I assume those links would have some expiration
- does it work for Stripe Connect?
What is they miss all of these emails?
then the payment will fail. there's not much you can do about this.
- does it work for Stripe Connect?
sure.
Well then the subscription changes its status to "unpaid" if I remember correctly
However if he decides to change the card before this, I cant seem to find a way to do that
Unless I generate a link for him
Well then the subscription changes its status to "unpaid" if I remember correctly
again that depends on your settings on the same page
However if he decides to change the card before this, I cant seem to find a way to do that
there are many ways to let customer update their default payment method.
the simplest option is to use the customer portal
How does it work with direct charges?
๐ taking over for my colleague. Let me catch up.
I have a Stripe Store, where creators can join (as standard accounts). I would like to be able to generate such payment update link via the API
I'm not sure I follow
just give me a second to read through the existing thread
if you integrate with the Customer Portal using the API (https://stripe.com/docs/customer-management/integrate-customer-portal) you need to simply add the Stripe-Account header (e.g. https://stripe.com/docs/api/connected-accounts)
I wanted to give users only option to change payment method, not other options (ie change the subscription)
Its possible from my application
you can by configuring the Customer Portal
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 other than with the customer portal, there is no way to get this link via the API?
So I need to create a customer portal and then based on that I can get this payment update link?
Am I understanding that correctly?
yes
you create a Customer Portal Session https://stripe.com/docs/api/customer_portal/sessions/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
with the configuration from the link I shared previously
then you get the URL on the result object https://stripe.com/docs/api/customer_portal/sessions/object#portal_session_object-url
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
alright, sounds like there is a progress since the last time I checked this ๐
thanks a lot, I will give it a try
sure let me know if you need any more help