#kin_tsugi_
1 messages · Page 1 of 1 (latest)
I believe there is but am having trouble finding the doc on this. I will keep looking and get back to with what I can find
Thank you!
Still not finding this, I will consult my colleagues and get back to you
Ah it looks like the info is in this property, though I am not sure if that would show up immediately when creating the payment intent. Can you check one of the paymentintents that you created for this to see if they are present? https://docs.stripe.com/api/payment_intents/object#payment_intent_object-next_action-display_bank_transfer_instructions-reference
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
When the payment intent is first created, the 'status' property is 'requires_payment_method' and 'next_action' is null. It's only after the client selects bank transfer and clicks the submit button that it switches the payment_intent 'status' to 'requires_action' and populates the 'next_action' property with the bank details
👋 Stepping in for my teammate. Just to be clear, are you looking for a way to view/access/retrieve bank transfer instructions programmatically/without having the user select something client side?
Hi there. I think I have two related issues. 1) as shown in the initial screenshots, my intention is to use the PaymentElement component in a client checkout page, and for it to render the bank details inline like it does on a Stripe Checkout page. 2) I'm also hoping to include the bank transfer details in the invoice PDF I create (like it does automatically in Stripe Invoice), in which case I would like to do what you just described, 'to view/access/retrieve bank transfer instructions programmatically/without having the user select something client side'. Not sure if these are the same issue or slightly different.
Gotcha. No, there's no way to show this inline at the moment. A customer has to click on "Pay now" in order for the funding instructions to show up via a modal
You can use the Funding Instructions API to retrieve these instructions for a specific customer without having to first create an invoice or PaymentIntent: https://docs.stripe.com/payments/customer-balance/funding-instructions