Skip to content
Create account
or
Sign in
The Stripe Docs logo
/
Ask AI
Create account
Sign in
Get started
Payments
Revenue
Platforms and marketplaces
Money management
Developer tools
Overview
Get started with Connect
Integration fundamentals
Example integrations
Onboard accounts
Configure account Dashboards
    Get started with Connect embedded components
    Customize Connect embedded components
    Supported Connect embedded components
      Available Components
      Account management
      Account onboarding
      Balances
      Disputes for a payment
      Disputes list
      Documents
      Financial account
      Financial account transactions
      Issuing card
      Issuing cards list
      Notification banner
      Payment details
      Payments
      Payouts
      Payouts list
      Tax registrations
      Tax settings
      Preview components
      App install
      App viewport
      Capital financing
      Capital financing application
      Capital financing promotion
      Export tax transactions
      Payment method settings
      Reporting chart
    Stripe Dashboard customization
    Platform controls for Stripe Dashboard accounts
    Express Dashboard
Accept payments
Pay out to accounts
Manage your Connect platform
Tax forms for your Connect platform
Work with connected account types
HomePlatforms and marketplacesConfigure account DashboardsSupported Connect embedded components

Disputes list

Display a list of disputes and allow your connected accounts to manage the disputes.

Copy page

The Disputes list component displays the disputes associated with a connected account. Each row in the list represents a dispute. Connected accounts can click a row to show detailed information about the dispute and its associated charge. When you enable the dispute_management feature, connected accounts can take actions to manage disputes, such as submit evidence or accept disputes. The component also includes functionality to filter disputes based on specific criteria, and export the disputes list for further analysis or record-keeping.

When creating an Account Session, enable this component by specifying disputes_list in the components parameter. You can turn on or off an individual feature of the payment details component by specifying the features parameter under disputes_list:

Command Line
cURL
curl https://api.stripe.com/v1/account_sessions \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d account=
{{CONNECTED_ACCOUNT_ID}}
\ -d "components[disputes_list][enabled]"=true \ -d "components[disputes_list][features][refund_management]"=true \ -d "components[disputes_list][features][dispute_management]"=true \ -d "components[disputes_list][features][capture_payments]"=true \ -d "components[disputes_list][features][destination_on_behalf_of_charge_management]"=false

After creating the Account Session and initializing ConnectJS, you can render the Disputes list component in the front end:

disputes-list.js
JavaScript
// Include this element in your HTML const disputesList = stripeConnectInstance.create('disputes-list'); container.appendChild(paymentDisputes);

Dispute management for destination charges

By default, embedded components are most compatible with Connect integrations that accept direct charges. You can allow users to see disputes associated with destination charges with the on_behalf_of attribute by enabling the destination_on_behalf_of_charge_management feature. Otherwise, this component doesn’t include disputes for these types of charges.

When you enable both dispute_management and destination_on_behalf_of_charge_management, your connected accounts can update and modify dispute evidence, counter disputes, and accept disputes for destination charges with the on_behalf_of attribute set to the connected account.

For destination charges, with or without on_behalf_of, Stripe debits dispute amounts and fees from your platform account.

We recommend setting up a webhook to listen to dispute created events. When that happens, you can attempt to recover funds from the connected account by reversing the transfer through the Dashboard or by creating a transfer reversal.

If the connected account has a negative balance, Stripe attempts to debit its external account if debit_negative_balances is set to true.

If you challenge the dispute and win, you can transfer the funds that you previously reversed back to the connected account. If your platform has an insufficient balance, the transfer fails. Prevent insufficient balance errors by adding funds to your Stripe balance.

Common mistake

Retransferring a previous reversal is subject to cross-border transfer restrictions, meaning you might have no means to repay your connected account. Instead, wait to recover disputed cross-border payment transfers for destination charges with on_behalf_of until after a dispute is lost.

Was this page helpful?
YesNo
Need help? Contact Support.
Join our early access program.
Check out our changelog.
Questions? Contact Sales.
LLM? Read llms.txt.
Powered by Markdoc