Update order Preparation Time Run in API Explorer
Ask AI
Some channels support the option to change the time an order can be picked up or delivered. If completed on time, this can optimize the order flow in the kitchen and the pickup procedure for drivers
POST
/updatePreparationTime
curl \
--request POST 'https://api.staging.deliverect.com/updatePreparationTime' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"order":"{{orderId}}","minutes":15}'
Request example
{
"order": "{{orderId}}",
"minutes": 15
}