#ankurrokad

1 messages ยท Page 1 of 1 (latest)

winged bearBOT
vital smelt
rare canyon
#

Alright, Let me try that.

#

{
"object": "balance",
"available": [
{
"amount": 405178,
"currency": "cad",
"source_types": {
"card": 405178
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "cad"
}
],
"instant_available": [
{
"amount": 1200000,
"currency": "cad",
"source_types": {
"card": 1200000
}
}
],
"livemode": false,
"pending": [
{
"amount": 10147449,
"currency": "cad",
"source_types": {
"card": 10147449
}
}
]
}

vital smelt
#
            "source_types": {
                "card": 405178```
Looks like you currently don't have a sufficient available balance in that currency to cover the amount of the Transfer that you're trying to create.

If you're currently working in test mode, then you can use the test cards shown here to create and process payments and have the funds from those immediately move to your `available` balance rather than first going through `pending`:
https://stripe.com/docs/testing#available-balance
#

Alternatively, if you're creating this Transfer as part of a Separate Charges and Transfers flow, where these Transfers are associated with recently made payments, then you can use the source_transaction parameter to like the Transfer to the payment's Charge. Doing so will queue the creation of the Transfer so that it happens once the funds from the Charge become available.
https://stripe.com/docs/connect/charges-transfers#transfer-availability

rare canyon
#

Okay,
I actually added 100K using a payment link to test PAYOUT

#

I guess that could be a reason,

But What I will do it, just charge a test customer some amount and then try to run the Payout, I guess that will work.

vital smelt
vital smelt
rare canyon
#

Yes, That worked,
Thank you very much @vital smelt

rare canyon
vital smelt
#

Awesome, glad to hear that helped!

rare canyon