#bluecoffee_best-practices
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/1399710984121221221
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Awesome @somber quarry
Can I ask one more thing?
So, we have some of our customers with multiple trial subscriptions (don't know why), and here's an example:
A customer has 5 subscriptions, 2 are incomplete, 3 are trialing. Out of the three trialing, only one has a payment method attached in the subscription dashboard, so after trial ends, the customer will only be charged once, right?
I think you shouldn't allow your customers to have multiple Subscription to be sure
he customer will only be charged once, right?
If the PaymentMethod is attached only to the Subscription and not as a default payment method to the customer, then yes
There'll be only one payment
Here are the priority of payment method used:
https://docs.stripe.com/billing/subscriptions/payment-methods-setting#payment-method-priority
Yeah that's what is confusing me.
In that customer's dashboard (stripe dashboard > customers), I see a payment method.
But when I retrieve using stripe shell stripe customers retrieve , I get this in that customer's details:
"invoice_settings": {
"custom_fields":
null,
"default_payment_method":
null,
"footer":
null,
"rendering_options":
null,
},
So, no default method?
yeah no default payment method at the customer level
Awesome. Thanks!