#jmontydesign
1 messages · Page 1 of 1 (latest)
Looking our Stripe dashboard we have $150,000 in the account, but I get the error that there are insufficient funds: "You have insufficient funds in your Stripe account for this transfer. Your ACH balance is too low." What do you mean different balance?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
In the dashobard under Balances USD Balance it stays $150,617.67.
If you use this API what would it show you?
I'll take a look.
{
object: 'balance',
available: [ { amount: 15060982, currency: 'usd', source_types: [Object] } ],
connect_reserved: [ { amount: 25050, currency: 'usd' } ],
instant_available: [ { amount: 1000000, currency: 'usd', source_types: [Object] } ],
issuing: { available: [ [Object] ] },
livemode: true,
pending: [ { amount: 2329447, currency: 'usd', source_types: [Object] } ]
}
retrieving the balance seems to show that there are sufficient funds. ???
Any help???
sorry, looking
fmfm it looks normal
What can you see inside the Object in available: [ { amount: 15060982, currency: 'usd', source_types: [Object] } ],?
I'll take a look now.
balance.issuing.available is [{"amount":0,"currency":"usd"}]
... oh, I'll get teh source_types object, sorry.
Here is the source_types object:
[{"amount":15060982,"currency":"usd","source_types":{"bank_account":988,"card":15059994}}]
Yeah so you can see there are 2 source type, right?
Your transfer request is using " source_type: "bank_account","
so 988 is not enough
Looking at the dashboard how can I tell what the amount available for "card" vs "988"? I just see the balance of 150,000 that is available. The card balance seems to say 0, so I expect the rest to be available. Where is "988"?
I agree it could be hard to see in the Dashboard. The API response did a better job
[{"amount":15060982,"currency":"usd","source_types":{"bank_account":988,"card":15059994}}]
ahh, the bank_account amout is 988. and the card has the rest. ???
Yeah
I guess you could get the same result if using the Balance Report from Dashboard https://dashboard.stripe.com/test/reports/balance
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Is this shown in the dashboard?
probably inside the Balance Report above
I couldn't find that info there.
um you're right, I just checked again and don't see it
Sorry I only know it's on the response of the API
It could be not available via Dashboard yet
Ok, thanks.