Skip to main content

Update Delivery Step

PUT /order/delivery/:id/step

Updates the status of a specific step in the delivery process for an order. The endpoint allows you to mark delivery steps as completed or update their status, with an optional parameter to recalculate delivery-related information. Returns the updated delivery record with the modified step status and any recalculated delivery details.

Query Parameters

  • recalculate - Parameter for recalculate

Request Example

PUT /order/delivery/:id/step?recalculate=false

Request Body

{
"step": {
"id": 0,
"status": "completed"
}
}