POST /updatePreparationTime

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

application/json

Body

Responses

  • 200

    OK

  • 400

    error

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
}