#victory_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/1286613298736926762
๐ 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.
- victory_api, 5 hours ago, 22 messages
Hi
You can refer to this guide:
https://docs.stripe.com/payments/sepa-debit/set-up-payment
I mean, can I create SEPA mandate on stripe directly, if yes, what is the endpoint for create the SEPA mandate?
regarding the Mandate API from Stripe. I understand how the mandate can be retrieved, but where do get the mandate id (beginning with mandate_ ) from?
I dont see an endpoint for creating a mandate, just one to retrieve the mandate by its id
I mean, can I create SEPA mandate on stripe directly, if yes, what is the endpoint for create the SEPA mandate?
No, the customer need to ackwnoledge the mandate creation. You can't create a mandate without the customer action.
Can you explain in more detail?
After customer agree with mandate, how can I get the mandate id?
Why you need the mandate Id? you can simply use the generated PaymentMethod ID for your payments
Then you listen to the event mandate.updated https://docs.stripe.com/api/events/types#event_types-mandate.updated
To see if the mandate expires at one moment or another. Then you need to recollect a new PaymentMethod with a new Mandate
Thanks for letting me know.
But I need the SEPA Mandate, because of that, I have to get the detail information of Mandate with mandate id on this endpoint.
GET
/v1/mandates/:id
Let me do a quick test...
thanks
Ok after confirming the SetupIntent, you can get the mandate:
https://docs.stripe.com/api/setup_intents/object#setup_intent_object-mandate
Hi, @rich forge
Thanks for letting me know.
But I am not sure how can I get the Sepamandate with this?
Please explain in more detail. ๐