POST
/
v1
/
order
/
dispute
curl --location --request POST 'https://api.stateset.network/v1/order/dispute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": "",
    "reason": "Item not as described"
}'

{
  "success": 123
}

Body

id
string
This is the ID of the order to be disputed.
reason
string
This is the reason for the dispute.

Response

success
number
Indicates whether the call was successful. 1 if successful, 0 if not.
curl --location --request POST 'https://api.stateset.network/v1/order/dispute' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>' \
--data-raw '{
    "id": "",
    "reason": "Item not as described"
}'