#cygan_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/1367841191038681140
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there!
Can you share the ID (req_xxx) of the failing API request?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
req_5mspOvtelWAGw7
Thanks, Can you share the response of /v1/balance endpoint ?
And can you try this?
https://docs.stripe.com/connect/currencies#fx-quote-for-the-transfer-leg
Create a fx quote and then attached to the transfer
{
"object": "balance",
"available": [
{
"amount": 323757768,
"currency": "pln",
"source_types": {
"card": 323757768
}
},
{
"amount": 18685,
"currency": "gbp",
"source_types": {
"card": 18685
}
},
{
"amount": 0,
"currency": "eur",
"source_types": {
"card": 0
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "pln"
},
{
"amount": 0,
"currency": "gbp"
},
{
"amount": 0,
"currency": "eur"
}
],
"livemode": false,
"pending": [
{
"amount": 107689,
"currency": "pln",
"source_types": {
"card": 107689
}
},
{
"amount": 0,
"currency": "gbp",
"source_types": {
"card": 0
}
},
{
"amount": 0,
"currency": "eur",
"source_types": {
"card": 0
}
}
]
}
Thanks, can you try this then ?
Yes, I will ๐ So the type of transfer I'm trying to make is not possible without an fx quote, correct? I'm trying to determine whether the type of transfer I'm trying to make requires any changes to my app.
Yeah you need to have EUR funds available otherwise you'll have to use FX,
Thank you, that's all I wanted to know so far. I will try it out with FX or just create a new currency account in EUR.