POST
/
api
/
order
/
status
curl --request POST \
  --url https://api.artisn.desarrollo-redbrand.com/api/api/order/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "order_id": "0000013353-092501",
  "status": "Canceled"
}'
{
  "message": "Order status changed successfully",
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Order status changed successfully

The response is of type object.