#vicky_code
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/1329855402908717139
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
hey! looking into this now but i'm in a few threads so i might be a little slow FYI.
Sure
FYI focusing on this thread now. it looks like you're using the Charges API, which is deprecated, so my first recommendation would be to consider using the newer Payment Intents flow for any new implementations if possible. have you looked into this yet?
https://docs.stripe.com/payments/payment-intents
aside from that, if you want to continue using Charges you're limited to the payment source types supported via the Sources API:
https://docs.stripe.com/api/sources/object#source_object-type
The type of the source. The type is a payment method, one of ach_credit_transfer, ach_debit, alipay, bancontact, card, card_present, eps, giropay, ideal, multibanco, klarna, p24, sepa_debit, sofort, three_d_secure, or wechat. An additional hash is included on the source with a name matching this value. It contains additional information specific to the payment method used.
looking further i'm not sure we support bank debit payments for those currencies at all. this page lists the types of bank debits we support and it doesn't look like any of them work in the countries you specified unfortunately
https://docs.stripe.com/payments/bank-debits
Could you please let me know the equivalent payment types to ACH for Kuwait/Lesotho/Phillipines. Also could you please suggest the approach for making payment (not by credit/debit cards)
ACH is a bank debit payment flow, and as i mentioned earlier it looks like we don't support any equivalents for those countries / currencies. we do currently support:
ACH (US) https://docs.stripe.com/payments/ach-direct-debit
BACS (UK) https://docs.stripe.com/payments/payment-methods/bacs-debit
BECS (AU) https://docs.stripe.com/payments/au-becs-debit
ACSS (Canada) https://docs.stripe.com/payments/acss-debit
SEPA (EU) https://docs.stripe.com/payments/sepa-debit
let me see if we have any good resources on which payment types are supported by country
so i think the best option would be something along the lines of one of the digital wallets that's available globally
which isn't quite what you're looking for
nothing as far as bank debits / transfers is supported in those countries
Could you recommend one of them which is used globally
paypal is globally accepted, but it has a limited number of currencies that it allows presentment in:
https://docs.stripe.com/payments/paypal
EUR, GBP, USD, CHF, CZK, DKK, NOK, PLN, SEK, AUD, CAD, HKD, NZD, SGD
paypal (and i think pretty much all wallet payments) would also require you to update to using PaymentIntents as i mentioned earlier
What payment type do you recommend for Kuwait, Lesotho, Philippines? I’m not aware of the banking domain, could you please help
Apart from debit/credit card payments
unfortunately i am also not particular with payments in those areas - generally speaking here on the discord i can help you with engineering / coding related queries but i can't offer a lot of insight into which payment methods are best for a given area
one other advantage of migrating to Payment Intents is that it allows for automatic payment methods, which essentially does a lot of the work for you in terms of picking which options to show for different currencies or locales
Thanks for the information