# Dispute Won

After evaluating the case, the client may modify the dispute verdict to won if the acquirer bank's agreement pertains to a valid billing or the delivery of products. Also, the client can change the verdict to won if the transaction details provided is legit by the merchant.

```
PUT https://stgsecctrl.tutelar.io/api/v1/dispute/merchant-won/:disputeId
```

### Responses

* `200`: Success Response
* `422`: Unprocessable Entity
* `401`: Unauthorized access
* `404`: Request not found
* `500`: Internal Server Error

### Success Response

```json
{
  "success": true,
  "code": 200,
  "message": "Merchant Won this dispute",
  "data": {}
}
```

### Failure Response

```json
{
  "success": false,
  "code": 300,
  "message": "No data found",
  "data": {}
}
{
  "success": false,
  "code": 300,
  "message": "Already reacted to this dispute",
  "data": {}
}
```

```json
{
  "success": false,
  "code": 300,
  "message": "Unauthorized access",
  "data": {}
}
```

```json
{
  "success": false,
  "code": 300,
  "message": "Request not found",
  "data": {}
}
```

```json
{
  "success": false,
  "code": 300,
  "message": "Something went wrong",
  "data": {}
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.v2.tutelar.io/dispute-won.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
