Update Order Status

POST https://api.salla.dev/admin/v2/orders/:order_id/status

This endpoint allows you to update the status for a specific order by providing the ID of the order in the order path parameter. Also you should pass either the status ID or the slug.

💡 Note

To update an order status, you may use one of the following: - slug to update an order with predefined Salla statuses. - status_id to update the Custom Order Sub-status.

Request Body

{"status_id"=>"<number>", "slug"=>"<string>", "note"=>"<string>"}

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring
Acceptstring

RESPONSES

status: Created

{&quot;status&quot;:&quot;\u003cnumber\u003e&quot;,&quot;success&quot;:&quot;\u003cboolean\u003e&quot;,&quot;data&quot;:{&quot;message&quot;:&quot;\u003cstring\u003e&quot;,&quot;code&quot;:&quot;\u003cnumber\u003e&quot;}}