#_error

1 messages ยท Page 1 of 1 (latest)

idle edgeBOT
#

๐Ÿ‘‹ 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.

quasi tundra
#

๐Ÿ‘‹
What is the origin of the funds of the transfer you are trying to do ?

vital kestrel
#

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"
}
vital kestrel
#

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

quasi tundra
vital kestrel
#

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

quasi tundra
vital kestrel
#

I see, I'll try that solution on production really quick. Thanks for the info !