Accéder directement au contenu
Créez un compte
ou
connecter-vous
Logo de la documentation Stripe
/
Demander à l'assistant IA
Créez un compte
Connectez-vous
Démarrer
Paiements
Automatisation des opérations financières
Plateformes et places de marché
Gestion de fonds
Outils de développement
Démarrer
Paiements
Automatisation des opérations financières
Démarrer
Paiements
Automatisation des opérations financières
Plateformes et places de marché
Gestion de fonds

Remarque

Cette page n'est pas encore disponible dans cette langue. Nous faisons tout notre possible pour proposer notre documentation dans davantage de langues et nous vous fournirons la version traduite dès qu'elle sera disponible.

Disputes list

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

Copier la 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
:"
\ -H "Stripe-Version: 2025-03-31.preview" \ -d account=
{{CONNECTED_ACCOUNT_ID}}
\ -d "components[payments][enabled]"=true \ -d "components[payments][features][refund_management]"=true \ -d "components[payments][features][dispute_management]"=true \ -d "components[payments][features][capture_payments]"=true \ -d "components[payments][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.

Erreur fréquente

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.

Cette page vous a-t-elle été utile ?
OuiNon
Besoin d'aide ? Contactez le service Support.
Rejoignez notre programme d'accès anticipé.
Consultez notre log des modifications.
Des questions ? Contactez l'équipe commerciale.
LLM ? Lire llms.txt.
Propulsé par Markdoc