# Dispute Won

After evaluating the case, the client may modify the disputes 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.

<mark style="color:green;">`PUT`</mark> `https://stgsecctrl.tutelar.io/api/v1/dispute/merchant-won/:disputeId`

{% tabs %}
{% tab title="200:  Success Response" %}

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

{% endtab %}

{% tab title=" 422 : Unprocessable Entity" %}

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

{% endtab %}

{% tab title="401: Unauthorized access" %}

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

{% endtab %}

{% tab title="404 : Request not found" %}

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

{% endtab %}

{% tab title="500: Internal Server Error " %}

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

{% endtab %}
{% endtabs %}

### 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": {}
}
```
