> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sudo.africa/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

You can dispute transactions that the cardholder does not recognize, suspects to be fraudulent, or has other issues with.

**Endpoints**

| Method | Url                                              |
| ------ | ------------------------------------------------ |
| `POST` | [/cards/disputes](/reference/create-dispute)     |
| `GET`  | [/cards/disputes](/reference/get-disputes)       |
| `GET`  | [/cards/disputes/:id](/reference/get-dispute)    |
| `PUT`  | [/cards/disputes/:id](/reference/update-dispute) |

**Dispute** **Object**

<CodeGroup>
  ```json RESPONSE (STANDARD) theme={null}
  {
      "business": "61d4150b00c7cdd1184ef455",
      "transaction": "61d7e0ce67ccf96ec7f893c0",
      "balanceTransactions": [],
      "amount": -110.75,
      "currency": "NGN",
      "status": "submitted",
      "reason": "not_received",
      "explanation": "This is the explanation",
      "_id": "61de8ee57dcd42f2dff12f71",
   }
  ```
</CodeGroup>
