#_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/1238348879376945193
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello! I think the first section of this guide is what you're looking for? https://docs.stripe.com/payments/checkout/multi-currency-prices
You can either use adaptive pricing if your Stripe account is in a supported country, or manually define multi currency prices : https://docs.stripe.com/payments/checkout/multi-currency-prices#add-multiple-currencies-to-a-price
I created product with currency THB and create payment link with currency USD
and here is error response
how can I fix it
can you paste the request id here? it's the bit with req_
Here is when create price: req_xA7awtM4E8hmeP
Here is when create pament link: req_rROPjm8P1tgFmV
you only have one currency for that Price - you should define the other currencies and corresponding amounts : https://docs.stripe.com/api/prices/create#create_price-currency_options
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok, I already created, but price of currency is not convert from THB into USD
is there stripe have convert currency by automatic?
price req: req_dINpVMyb7TwvM3
payment link req: req_MU9KDumy4Lelaj
unfortunately, automatic currency conversion is not supported for TH Stripe accounts
i'm not sure what you mean by price of currency is not converted from THB into USD?
in the Payment Link i see the Price displayed as USD
yes, in my scenario I what to create Price/Product in THB and create payment link into USD, JPY, etc.
oh, ok.
if my account is from US account I can do it right?
yes, it's possible with a US account using https://docs.stripe.com/payments/checkout/adaptive-pricing
ok, thank you.
bytheway, if i have another question I must create other Thread or ask in this thread?
we'll close the thread after a period of time with no activity, so you can ask a new question via the #help channel
ok, thank you
alright, i want to ask other questions
Can I do create temporarily payment link (payment link must have expired/closed from payment is Paid or time out)?
A payment link doesn't have an expiry time. If you want to define an expiry time, you would want to use Checkout Sessions instead : https://docs.stripe.com/api/checkout/sessions/create#create_checkout_session-expires_at
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.