PUT
/
api
/
v1
/
orders
/
{order_id}
/
status
curl --request PUT \
  --url https://api.byblend.com/api/v1/orders/{order_id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "current_status_code": "P03"
}'
{
  "message": "Order status updated successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

order_id
string
required

Unique identifier for the order, either UUID or order number (e.g. ORD250312003548IAU4)

Body

application/json

Response

200 - application/json

Successful response with statuses

The response is of type object.