#_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/1361659880129429654
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐
What is the origin of the funds of the transfer you are trying to do ?
Just to add a little bit more of context, here's the output of the balance command from Stripe CLI:
{
"object": "balance",
"available": [
{
"amount": 2425,
"currency": "eur",
"source_types": {
"card": 2425
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "eur"
}
],
"livemode": true,
"pending": [
{
"amount": 0,
"currency": "eur",
"source_types": {
"card": 0
}
}
],
"refund_and_dispute_prefunding": [
{
"amount": 104748,
"currency": "eur"
}
]
}
I need to process those transfers as it's the money that need to go to our seller's wallets
Here's the payload of the transaction I'm attempting:
{
"amount": "1748",
"currency": "EUR",
"description": "Transfer Seller Order 116",
"destination": "acct_1QCeeSPg8e7wADiN"
}
๐ ?
The balance of the Stripe Account, if that's what you're asking
Ah, the charge was made by card sorry
It's an online purchase
Try make the transfer by setting the source_transfer:
https://docs.stripe.com/api/transfers/create#create_transfer-source_transaction
Is this a new requirement for the API ? Or is it just to make sure that it works ?
Because this transfer was made a little before those two, and it worked correctly: req_uaOUBy1THbQxdS I can try with the source_transfer though
Actually this is the recommended approach to make sure that the transfer has source funds
https://docs.stripe.com/connect/separate-charges-and-transfers?platform=web&ui=stripe-hosted#transfer-availability
I see, I'll try that solution on production really quick. Thanks for the info !