cURL
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" }
Oauth authentication with client credentials
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Order ID
"0000013353-092501"
New order status
"Canceled"
Order status changed successfully
success message
"Order status changed successfully"
Operation status
"success"