#suraj-patidar_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/1410879695658160229
đ 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.
- suraj-patidar_api, 21 hours ago, 41 messages
- suraj-patidar_webhooks, 1 day ago, 8 messages
- suraj-patidar_webhooks, 1 day ago, 18 messages
- suraj-patidar_webhooks, 1 day ago, 9 messages
- suraj-patidar_webhooks, 1 day ago, 14 messages
hello! You'll want to take a look at this guide : https://docs.stripe.com/payments/save-during-payment
Can you share more context on why you want your customer to pay 1 eur for verifying their card?
In short, you'll want to include the Customer ID and setup_future_usage="off_session" when creating the PaymentIntent
We have a platform where marina admins can purchase subscriptions. The subscription amount is usage-based and calculated monthly. We generate the invoice on our side each month.
When an admin purchases a subscription, we need to verify their card so that when we generate the monthly invoice, we can automatically charge the amount.
to be clear though, even if you charge the card first, there's no guarantee that the payment will be successful when you charge the card again later. You're introducing additional costs because of that $1 charge.
if i have card meanspaymetmethod id and amount and i want to auto charge that amout it possible or not ?
https://docs.stripe.com/payments/save-during-payment#charge-saved-payment-method - if you have the PaymentMethod id, the PaymentMethod is attached to a Customer, then yes, you can implement logic to automatically charge the Customer
okay