#mike-j_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/1305894058694283378
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- mike-j_api, 6 days ago, 7 messages
- mike-j_api, 6 days ago, 20 messages
Specificaly to what endpoint(s) are you passing a currency parameter? Payments? Payouts?
If you've an example of a request then pleae share the ID
OIK, sorry - I assumed it would be a general thing, Hang on...
But basically anything that deal with money. Payments, transfers etc. How about py_1QK8xKCOcceeX0P6FId7EwRd
OK, so creating a Transfer to another Stripe account balance: https://dashboard.stripe.com/test/logs/req_3q1XF8eX20Eiqc
Unfortunately the currency parameter is required for that endpoint
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
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, so I'll need to get the account it's going to first to determine the currency they use?
Hmm, not necessarily. Most Stripe account can accumulate balances in multiple currencies, and I believe we'll do FX on the transfer if it's an unsupported currency
Oh, ok, so if we want to assume a default currency, it's the sort of thing we need to store about the recipient ourselves, outside of stripe? (Well, unless we add it to the recipient account's metadata, I suppose?)
You can check default_currency on the Account: https://docs.stripe.com/api/accounts/object#account_object-default_currency
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Also this API will give you a list of supported currencies for a specific account country: https://docs.stripe.com/api/country_specs/object?lang=curl#country_spec_object-supported_bank_account_currencies
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, cool - thanks for those