#ericcecchi
1 messages ยท Page 1 of 1 (latest)
Hello ๐
You can typically find the mandate on the SetupIntent that was used to store the payment method
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.
And if I don't have the setup intent IDs available, is there a way to get those from the payment method IDs?
You can use List SetupIntent API and pass the payment method ID as parameter
https://stripe.com/docs/api/setup_intents/list
Cool, that should work. Bit of a roundabout way of getting there, but it's fine since this is a one-time data pull.