#cryptiano
1 messages · Page 1 of 1 (latest)
Via the api you can use: https://stripe.com/docs/api/payouts/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
That won't show upcoming but will show previous and in transit
So i need to show these two:
- In Transit
- and the remainign balance
the total amount
not individual payouts*
You can use the balance api to query the account balance: https://stripe.com/docs/api/balance/balance_retrieve
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
For payouts list them by pending: https://stripe.com/docs/api/payouts/list#list_payouts-status
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok thanks i will try
{
"object": "balance",
"available": [
{
"amount": 21913,
"currency": "usd",
"source_types": {
"card": 21913
}
}
],
"connect_reserved": [
{
"amount": 0,
"currency": "usd"
}
],
"livemode": false,
"pending": [
{
"amount": 525,
"currency": "usd",
"source_types": {
"card": 525
}
}
]
}
Whats pending here?
i basically need this data
ok nevermind
i found the description in the docs
ok it worked
the Balance api's available means in transit and pending means future payouts
Great! I'm happy to hear that worked out for you.