Skip to main content

Dispute cases

A dispute occurs when a cardholder questions a payment with their card issuer. The card issuer then reverses the payment creating a dispute case, at which point you have the opportunity to provide evidence defending the original transaction.

How disputes work

When a dispute is initiated a typical flow is as follows:

  1. Dispute Creation: The cardholder contacts their bank to contest a payment
  2. Immediate Reversal: The bank issues a chargeback and the disputed amount is immediately deducted from your daily settlement
  3. Dispute Case: PublicSquare creates a dispute case to track the process
  4. Adjustment Creation: Financial adjustments are automatically created to reflect the dispute
  5. Evidence Period: You have a limited time to submit evidence defending the transaction (if the dispute reason is contestable)
  6. Resolution: The card issuer makes a final decision to uphold or reverse the dispute
Chargebacks generally result in immediate financial adjustments to your account balance, regardless of the final outcome.

Inquiries / warnings

In some cases, an inquiry or warning may precede a formal chargeback. These notifications give you an opportunity to resolve the issue before it escalates to a full chargeback by providing additional information or issuing a refund.

Responding promptly to warnings is critical, as it can prevent the progression to a formal chargeback. In many cases, issuing a refund may be the most appropriate response to avoid the fees and complications associated with an unwinnable chargeback.

Dispute statuses

The status field indicates the current state and any required actions:

StatusDescription
warning_needs_responsePre-dispute warning that requires a response to prevent a formal chargeback
warning_under_reviewWarning response submitted and under review
warning_closedWarning resolved without becoming a formal chargeback
needs_responseFormal dispute requiring evidence submission
under_reviewEvidence submitted and dispute is under review
wonDispute decided in your favor, funds returned
lostDispute decided against you, funds remain with cardholder

Depending on the card brand and issuer, funds may be preliminarily returned to you immediately shortly after documents are uploaded. This bypasses the under_review state, moving the case temporarily to a won status.


If upon review the issuer decides in the cardholder's favor, another adjustment will be made moving the case to a final lost status.

Financial adjustments

When a dispute occurs, PublicSquare automatically creates adjustments to track the financial impact:

Adjustment types

TypeDescription
decided_against_merchantFunds deducted when dispute is filed or lost
decided_for_merchantFunds returned when dispute is won

Example dispute with adjustments

{
"id": "dsp_BGDLZjBLAgNbyqCzJxchSoh5k",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "production",
"status": "lost",
"evidence_submitted": true,
"processor": "nuvei",
"processor_id": "id132456798",
"disputed_transaction_id": "trx_8iYxBRnk79e4KXGjeN5RrD",
"disputed_transaction_type": "payment",
"retrieval_reference_number": "123456789012345",
"acquirer_reference_number": "123456789012",
"amount_disputed": 50000,
"currency": "USD",
"reason": "13.7",
"card_brand": "visa",
"description": "Cancelled Merchandise/Services",
"disputed_at": "2024-01-15T10:30:00Z",
"due_at": "2024-01-29T23:59:59Z",
"created_at": "2024-01-15T10:30:00Z",
"modified_at": "2024-01-16T14:22:00Z",
"adjustments": [
{
"id": "adj_BGDLZjBLAgNbyqCzJxchSoh5k",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "production",
"dispute_case_id": "dsp_BGDLZjBLAgNbyqCzJxchSoh5k",
"transaction_id": "tx_EZpTTf58cwb2SHw5FfDWmX",
"amount": 50000,
"currency": "USD",
"type": "decided_against_merchant",
"created_at": "2024-01-15T10:30:00Z",
"modified_at": "2024-01-15T10:30:00Z"
}
],
"disputed_transaction": {
"id": "trx_8iYxBRnk79e4KXGjeN5RrD",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "production",
"external_id": "order-12345",
"status": "succeeded",
"amount": 50000,
"fee_amount": 360,
"net_amount": 49640,
"currency": "USD",
"type_id": "pmt_2YKewBonG4tgk12MheY3PiHDy",
"type": "payment",
"processor": "nuvei",
"processor_id": "7110000000010554769",
"acquirer_id": "2630000240513800",
"created_at": "2024-01-10T15:20:00Z",
"modified_at": "2024-01-11T09:15:00Z"
}
}

Common dispute reasons

Disputes can occur for various reasons. Here are some examples:

ReasonPrevention Tips
Cancelled Merchandise/ServicesClear cancellation policies, process cancellations promptly
Merchandise/Services Not ReceivedProvide tracking information, delivery confirmations
No Cardholder AuthorizationUse AVS and CVV verification, implement fraud monitoring
Cardholder Dispute - Defective/Not as DescribedAccurate product descriptions, quality control processes
Fraud - Card not present transactionStrong customer authentication, fraud detection
Credit Not ProcessedProcess refunds promptly, provide confirmation
Non-receipt of Goods or servicesReliable shipping, delivery tracking
Incorrect AmountClear pricing, accurate billing descriptors
Cardholder Does Not RecognizeDescriptive billing names, transaction confirmations
Duplicate Processing/Paid by Other MeansImplement idempotency keys, clear billing descriptors

Dispute best practices

Clear communication

  • Use descriptive billing descriptors that customers will recognize
  • Send confirmation emails with transaction details
  • Provide clear contact information for customer inquiries

Customer service

  • Respond quickly to customer inquiries before they escalate to disputes
  • Have a clear refund and return policy
  • Maintain detailed records of customer communications

Documentation

  • Keep detailed records of all transactions and customer interactions
  • Maintain proof of delivery for physical goods
  • Document service completion for digital products

Responding to disputes

  • Submit evidence promptly within the deadline to avoid automatic loss
  • Provide comprehensive documentation that directly addresses the dispute reason
  • Include transaction records, customer communications, and delivery confirmations
  • Use clear, factual language when describing the transaction and customer interaction

Webhook notifications

PublicSquare sends webhook notifications when dispute cases are created or updated:

Dispute Case Webhook
{
"id": "evnt_5jxWRFNLCAWeegrkCAG3a9DGc",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "production",
"event_type": "disputecase:update",
"entity_type": "DisputeCase",
"entity_id": "dsp_BGDLZjBLAgNbyqCzJxchSoh5k",
"entity": {
"id": "dsp_BGDLZjBLAgNbyqCzJxchSoh5k",
"status": "needs_response",
"disputed_transaction_id": "trx_123465689",
"amount_disputed": 50000,
// ... full dispute case object
},
"created_at": "2024-01-15T10:30:00Z"
}
Subscribe to disputecase:update webhooks to receive real-time notifications about dispute status changes and take appropriate action.

Managing disputes

Retrieving disputes

Use the Get All Dispute Cases endpoint to retrieve disputes for your account:

Viewing dispute details

Use the Get Dispute Case by ID endpoint to get complete details including adjustments:

Monitoring in the portal

The PublicSquare Portal provides a comprehensive dispute management interface where you can:

  • View all dispute cases with filtering and search
  • Monitor dispute status and due dates
  • Track associated adjustments and financial impact
  • Access dispute details and related transaction information