#oiralih28
1 messages · Page 1 of 1 (latest)
I am not seeing support for Argentine on our site. https://stripe.com/global
Once Stripe is supported in your country, you’ll be able to accept payments from customers anywhere in the world.
Are you looking at a specific doc of ours for this?
Yes, I am looking at this documentation. My account is from the USA. but i have AR clients
Gotcha, thank you for checking
so yes you can charge in ARS as a US account
And you can use Stripe Tax to charge your users the right tax amount https://stripe.com/docs/tax/set-up
And how will my clients be paid? in USD or in ARS? I want them to be charged in ARS
The customer would be charged in ARS but the funds would settle in USD on your account https://stripe.com/docs/currencies/conversions
Are these configurations only done from the Stripe panel or can they also be done from the code in the request?
Specifying that you want to charge in ARS? That can definitely be done with code. How are you currently charging your customers? I can find the doc on how to pass the currency param for this
I send the request in USD. but my AR clients charge you in USD. I want to be charged in ARS
Can you show me your code for how you create these payment intents?
(Or Checkout Sessions or Invoices if you use those)
ok
POST /v1/payment_intents
{
"currency": "usd",
"capture_method": "automatic",
"shipping": {
"address": {
"line2": "mangles MZ D Solar 2",
"line1": "12122112\t1 sdsdsd\t\t",
"state": "Catamarca",
"city": "ACHALCO",
"postal_code": "70000",
"country": "AR"
},
"phone": "0987654321",
"name": "Hilario Villamar"
},
"confirmation_method": "manual",
"amount": "6478",
"payment_method_types": {
"0": "card"
}
}
I send the request in dollars
and I want my AR client to charge him in ARS
but the client was charged in USD
Gotcha. You will need to specify "currency": "ars", when creating this payment intent
We don't automatically change the presentment currency like that unfortunately
If I change the "currency": "ars" in amount, would I have to send it in pesos? I already tried that but I still charge my client in USD
My client received the charge from his card in USD
would I have to send it in pesos?
Can you clarify what you mean here? Send the amount to the API? Or send funds to someone?
Do you have the ID of the payment intent that still charged your client in USD?
Okay so for this payment https://dashboard.stripe.com/payments/pi_3Mtb9JE5ImJib9Uq0gtUmBQh
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Is the client still saw the charge in USD on their bank statement that may have been from how their bank handles ARS payments. Stripe definitely received ARS from their bank for this
I sent you the amount added with the respective taxes, but in ARS.
I want to send in USD and for Stripe to charge the customer in ARS with the respective taxes.
What would I need to do that?
As far as I am aware that does not exist at the moment.
It looks like we have this but at the moment it is only for automatic CAD<->USD conversion https://stripe.com/docs/payments/checkout/present-local-currencies?platform=automatic-currency-conversion
So for now you will still have to specify things in ARS here
OK thank you very much