#Sathish-acss
1 messages · Page 1 of 1 (latest)
hi! that's a good question. I don't think our native iOS libraries (https://github.com/stripe/stripe-ios) have any built in support for ACSS and mandate collection at the moment unfortunately
right now the easiest option would be to build a website using Checkout for the payment instead (https://stripe.com/docs/payments/acss-debit/accept-a-payment?platform=checkout) and then open your web page in Safari when the customer wants to pay, I would say.
We want to add PAD details to wallets page. The payment processing is we just calling create-payment-intent separatly in future. We just need to collect the PAD info from users and save it to Stripe.
We want to ensure the UI to collect the details from end-user
make sense! but right now our native SDKs don't support showing the UI for ACSS PAD mandates as far as I know
only our web-based clients(Checkout or stripe.js's confirmAcssDebitPayment function) can show it
so for now the best solution is to do the payment outside of your native app just in the browser, on a normal web page you build
👍