#zlf_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/1351114973773955128
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
Hi
Is it possible to use the API to allow users to manually pay for the failed renewal order within our app?
Does Stripe support an API to proactively trigger the payment attempt for the failed renewal order?
Yes you can call the /pay endpoint on the latest_invoice
Can you give me the address of the file, please?
Does stripe support the modification of bank cards
What kind of modification you are looking for ?
Whether the bank card bound when the subscription is created supports modification
When making subsequent payments, the user may want to change to a different card for payment
Can the content in this document pull up the payment component of this and let the user pay?
Yes, you can grab the PaymentIntent from the Invoice and confirm it using the Mobile Payment Element (on the screenshot)
- You get all the
status=openInvoices for a givensubscription: https://docs.stripe.com/api/invoices/list#list_invoices-subscription, andexpand=["payment_intent"]property: https://docs.stripe.com/expand - After that you get the
client_secretfrom that PaymentIntent and confirm it as any other PaymentIntent. You don't need to create the PaymentIntent in this case, just use the one attached to the Invoice: https://docs.stripe.com/payments/accept-a-payment?platform=ios
There's also automatic emails that can be sent to customers to update a PaymentMethod on failed Subscription renewals: https://dashboard.stripe.com/settings/billing/automatic
Okay, let me take a look at the file. Thank you very much