Skip to main content
POST
/
api
/
order
/
status
Orders - status change
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
order_id
string
required

Order ID

Example:

"0000013353-092501"

status
string
required

New order status

Example:

"Canceled"

Response

Order status changed successfully

message
string

success message

Example:

"Order status changed successfully"

status
string

Operation status

Example:

"success"