Update Order Status
POST
/managers/store/orders/{order_id}/change-order-statusThis endpoint is used to update the merchant's dashboard and the customer on the store with the status of the order and related details.
Request
Path Params
order_id
string
required
Header Params
Authorization
string
required
Bearer {{Authorization}}
X-MANAGER-TOKEN
string
required
{{X-MANAGER TOKEN}}
Body Params application/json
order_status
string
optional
New, preparing, ready, indelivery, delivered, canclled, in this case it should be ready
inventory_address_id
string
optional
Pickup inventory address id
waybill_url
string
optional
Waybill URL
tracking_number
string
optional
Tracking number
tracking_url
string
optional
Tracking URL
Example
{
"order_status": "string",
"inventory_address_id": "string",
"waybill_url": "string",
"tracking_number": "string",
"tracking_url": "string"
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{}
Last modified: 3 months ago