#Mahesh K

1 messages ยท Page 1 of 1 (latest)

worn needleBOT
thin scroll
#

๐Ÿ‘‹ happy to help

sour elbow
#

hi @thin scroll

thin scroll
#

how may I help?

sour elbow
#

i want fetch the total amount in my stripe

#

and total amount deposited through payout to my bank account

thin scroll
#

via API?

worn needleBOT
sour elbow
#

what if my payouts crossed 100

#

const payouts = await stripe.payouts.list({
limit: 3,
});

#

A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

#

I like to calculate total payout amount.

tardy flint
sour elbow
#

ok @tardy flint

#

const payouts = await stripe.payouts.list({
limit: 3,
stripeAccount: accountID,
});

#

will it works?

tardy flint
sour elbow
#

const payouts = await stripe.payouts.list(
{
limit: 3
},
{
stripeAccount: accountID
}

);