curl --request POST \
--url http://localhost:3000/v1/orders/{id}/deliver{
"success": true,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>",
"delivered_at": "<string>",
"summary": {
"order_items_delivered": 123,
"totes_delivered": 123,
"bags_delivered": 123
}
}Marks an order as delivered (the step before completion).
This endpoint should be called when an order has been handed off to the customer. It performs the following operations:
After delivery, call the /complete endpoint to finalize the order and reset equipment.
curl --request POST \
--url http://localhost:3000/v1/orders/{id}/deliver{
"success": true,
"order_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>",
"delivered_at": "<string>",
"summary": {
"order_items_delivered": 123,
"totes_delivered": 123,
"bags_delivered": 123
}
}