Payout statement descriptors
Understand and manage how Stripe payouts appear on a connected account's bank statements.
The statement descriptor used for Connect payouts varies according to the properties of the connected account and the conditions of the payout. We use a precedence order for manual and automatic payouts.
Connected accounts can have a customized statement descriptor stored on the Account object at settings.payout.statement_descriptor.
Banks can override your statement descriptor
Beneficiary banks don’t guarantee that they’ll display statement descriptors. While Stripe shares this information with the beneficiary’s bank, it’s up to the beneficiary bank to decide what they actually display on the bank statement.
Default statement descriptor
Connect platforms can configure a platform-wide default statement descriptor in their Connect settings, which is also used under certain criteria. Even when the precedence order falls to it, the default statement descriptor configured in your platform’s Connect settings only applies to a connected account’s payout under certain criteria.
- The connected account belongs to a platform that pays Stripe fees (including Custom and Express accounts), or you have platform controls for it.
- The connected account doesn’t have access to the Stripe API. Connected accounts only have access to the Stripe API if they can access the Stripe Dashboard.
- The connected account isn’t restricted from using the
read_
OAuth scope. Connected accounts can use thewrite read_
OAuth scope if they have access to the Stripe Dashboard and aren’t explicitly restricted from using it with platform controls.write
Unless all of these criteria apply, the statement descriptor defaults to STRIPE. However, this default might be subject to other external factors, such as which bank processed the payout.
Dashboard
You can customize a statement descriptor for all your connected accounts payouts on your connect settings page in the Dashboard.
API
{ "id": "{{ACCOUNT_ID}}", "object": "account", ... "settings": { "payouts": { "statement_descriptor": "Cactus Payouts" } } }
Precedence order 
If you don’t define any statement descriptor for your connected accounts, we default to STRIPE
as the descriptor shown on your connected account’s bank statement.
To learn more about account-level and payout-level statement descriptors, visit the payout statement descriptors overview page.