#jacob-dayton_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/1267501482358603877
đ 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.
- jacob-dayton_best-practices, 6 days ago, 3 messages
Thank you so much for your time and help! I just wanted to make sure our flow was valid and that we didn't need to use invoicing or some form of longer auth. It's preferred we auth ahead of time and charge when we receive items, it's the potential auth expiration during the shipping time and potential for an increase in the authorized amount that is worrying us. Thank you!
If we wait to confirm the payment intent for when we know the final total (could be a few weeks after creating payment intent) will the card authorization expire?
General rule of thumb is 7 days, although this can vary depending on card issuer and MCC
Is that true even if the payment intent is not confirmed and if the card was saved to the customer via setup intent with usage set to off_session? That said - could we create new payment intents and charge the customer's card at the time of arrival without customer interaction (other than initial card setup)?
Is that true even if the payment intent is not confirmed and if the card was saved to the customer via setup intent with usage set to off_session?
Yes, once the intent transitions torequires_capturethe capture window opens and reflected on this timestamp: https://docs.stripe.com/api/charges/object#charge_object-payment_method_details-card_present-capture_before
That said - could we create new payment intents and charge the customer's card at the time of arrival without customer interaction (other than initial card setup)?
Yes you can do an off-session payment with the previously saved/setup card upon receipt of the delivery notification
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.