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

# Resolve Dispute

> This endpoint resolves a dispute for an order.

### Body

<ParamField body="id" type="string">
  This is the ID of the order dispute to be resolved.
</ParamField>

<ParamField body="resolution" type="string">
  This is the resolution for the dispute.
</ParamField>

### Response

<ResponseField name="success" type="number">
  Indicates whether the call was successful. 1 if successful, 0 if not.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --location --request POST 'https://api.stateset.network/v1/order/resolve' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Token <token>' \
  --data-raw '{
      "id": "",
      "resolution": "Refund issued"
  }'

  ```
</RequestExample>
