#iclasspropayne_error
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/1242874826595766404
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
RequestId "req_3BD7VYuYyWzULl"
Hello! If you retrieve your balance in test mode what do you see? https://docs.stripe.com/api/balance/balance_retrieve
Do I need to make an API call or can I look at the Dashboard -
Available to pay out to your bank
$2,704.91
On the way to your bank
$0.00
Available to pay out soon
$0.00
Total
$2,704.91
The balance info shown in the Dashboard is a bit different than what's shown in the API, but it sounds like you have enough in your available balance. It would help to see the response from the API for more granular details, though.
Ok let me get that fo ryou
Ah, also, I think the issue in this specific case is related to the currency. You don't have any GBP on this account, do you?
robpayne@MICROSOFT-0023:~$ stripe balance retrieve
{
"object": "balance",
"available": [
{
"amount": 270491,
"currency": "usd",
"source_types": {
"card": 270491
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "usd"
}
],
"livemode": false,
"pending": [
{
"amount": 0,
"currency": "usd",
"source_types": {
"card": 0
}
}
]
}
The merchant I want to transfer to is Italian
How do I turn my top-up balance into EUR?
You can't do that. What happens if you try again, but specify usd as the currency (since that's what you have to transfer)?