#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/1286484149288304700
š Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there, there's no API to update a SPEA payment method, you need to recollect the payment method through Checkout page or Stripe elements
Thanks for letting me know. Now I'd like to implement the SEPA mandate on STRIPE in my project. Before that, I'd like to check the endpoints(create, remove SEPA mandate). You told me that I can't update the Mandate directly because of that there is no endpoint support this action. Can you provide me the detailed endpoints and the request and response data type that I can test in the postman?
In generally which value can I use to remove the SEPA mandate? Is this "mandate_reference"?
Customerāa consent is require for mandate collection, and thatās you need to do it from frontend such as checkout page or stripe elements
got it. before that, I think we have to make the SEPA mandate with some endpoint. right?
Could you send me the endpoints for creating & removing SEPA Mandate?
BTW, can I remove the SEPA Mandate directly with specific endpoint?
No, thereās no such endpoint
You mean there is no endpoint for removing SEPA Mandate?
No
?
https://docs.stripe.com/payments/sepa-debit/accept-a-payment I'd recommend you go through this doc to learn more about sepa debit integraiton with Stripe.
Thanks
One more question. š
Can I remove the SEPA Mandate directly on Stripe, it it's possible, Is there the endpoint for removing the Mandate?
I think this is the same question and the answer is still the same No, there's no endpoint to remove a sepa debit mandate. I hope this clarifies.
As I said my situation.
we had customers, and if the customer change their IBAN, we have to Update the SEPA Mandate for this. In this case, we should be able to remove the SEPA mandate, because the creditor can withdraw the SEPA mandate as well from what I know. But if there is no endpoint for removing, how can I do this? š
As I explained in the beginning, you should just create a new Sepa debit payment method with the new IBAN,
once you have collected the new payment method, you can also detach the old sepa debit payment method from the customer https://docs.stripe.com/api/payment_methods/detach
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thanks,