Disputes

Create multiple disputes

Submit multiple disputes at once. Only dispute reasons that do NOT require cardholder signature are allowed. Maximum 100 disputes per request.

post/disputes/bulk

Headers

Accept-Versionstring required

Specifies the API version to use for this request.

Request body

Example request

{
  "disputes": [
    {
      "transactionId": "ch_abc123",
      "cardId": "card_xyz789",
      "disputeAmount": 100.5,
      "disputeCurrency": "840",
      "cardholderName": "John Doe",
      "cardholderEmail": "john.doe@example.com",
      "contactEmail": "finance@example.com",
      "disputeReason": "FRAUD_OTHER_CARD_ABSENT"
    }
  ]
}

Response

Bulk disputes processed (may contain partial failures)

totalCountinteger required

Total number of disputes in the request

successCountinteger required

Number of successfully created disputes

failedCountinteger required

Number of failed disputes

Changes

No recorded changes to this endpoint across all 1 revision of this API.