#shepshep7-card-mandate
1 messages ยท Page 1 of 1 (latest)
I am setting up a custom payment flow for my business where we will be collecting card payment information first and charging later. I'm using setupIntents, but I want to also collect a mandate from the customer. is this as simple as a checked box? how would I transmit that mandate to stripe so they have it on file in the event of a dispute?
Hi there ๐ I believe how you structure the mandate acknowledgement on your site is up to you, but that you can provide those details to us via the mandate_data parameter when confirming the Payment Intent later when confirming the Payment Intent:
https://stripe.com/docs/api/payment_intents/confirm#confirm_payment_intent-mandate_data
However, before going down that route, I would suggest testing out the Setup Intent flow because I believe that may generate the mandate for you. After confirming the Setup Intent, can you try retrieving it and see if the mandate field is populated?
https://stripe.com/docs/api/setup_intents/object#setup_intent_object-mandate
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I do see those fields for Confirm and mandate, I'll try to mess around with them
shepshep7-card-mandate