#idhruv
1 messages · Page 1 of 1 (latest)
in the below image, i would like to set payout statement descriptor automatically per payout that we make to connected accounts
You probably need to set it here when creating the Account:
https://stripe.com/docs/api/accounts/object#account_object-settings-payouts-statement_descriptor
Or you can update existing Accounts:
https://stripe.com/docs/api/accounts/update#update_account-settings-payouts-statement_descriptor
actually we wish to set it dynamically per transaction with changing data
That's not possible with automatic payouts. You'd need to switch to a manual schedule and create them via the API where you can pass the parameter on a per Payout basis: https://stripe.com/docs/api/payouts/create#create_payout-statement_descriptor
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
cool
yes i see that, another question i have is
if i make multiple transactions in a single day as a user, will the payout be bundled together and sent to the connected account?
or I get to see them individually per transaction, we are observing that the payouts are getting bundled together
is there a way that each payout gets sent separately for transactions done in single day?
this is the account id for your ref: acct_1Mat3A2ekbRg08Ih
here you see for the payments done today, payout shows none to connect account.
No, you'd need to account for that yourself. You'd use a manual schedule and check the daily volume of the specific account and then create the Payout with the balance to match. Worth noting though that it's harder to track what payments are included in a Payout with a manual schedule.
i am sorry, but i didnt understand it. can you please explain this in reference to this image?
I don't understand your previous question. You can't create a Payout on a per transaction basis, not automatically anyway
What specifically am I looking at with the screenshot? It's always better to share some object IDs
I think you are not able to follow me. please visit here acct_1LzdqN2c1ZNl39TJ and please check the payments tab and equivalent payout tab for each payment.
Payment looks like this:
Ok, and what is your expectation?
and payout this:
so my expectation is if multiple payments are made in single day, the payouts are not shown in this way
for the case i shared above
acct_1Mat3A2ekbRg08Ih for this account please check that the payouts are empty and it seems it is trying to add the payouts together for all transaction which will be shown in the future
The account you shared is on a daily schedule that is delayed by 7 days. Meaning those paymnents from your screenshot (dated 13/2) won't be paid out for ~7 days: https://stripe.com/docs/connect/manage-payout-schedule
okay, but this delay is from your end or from our end we passed such request?
thanks for your search
Your stipulated that delay when you created/configured the account. Read the doc I just sent, it's a parameter you can set/update
okay, and after 7 day delay what will get to see in payout, will it send one payout calculating the sum of all the payment transactions i.e. 3 in this case or it will send 3 payouts separately for each payment
It'll be a single payout with the accumulated balance of the account at the time. If you want to breakdown what payments are included in a payout, you can do this: https://stripe.com/docs/expand/use-cases#charges-in-payout
np