Logo PopinaPopina API

Handle action on order

Handle various actions (READY, DELAY, FINISH, CANCEL) on an order, and notify the provider accordingly

POST/v1/orders/{id}/{action}
authorization<token>

To get an API key, please contact us. We'll be happy to help you.

In: header

Path Parameters

idstring

Unique identifier of OrderLive

Formatuuid
actionstring

Action to perform on the order; All actions can be executed once, except for the "DELAY" action, which can be performed multiple times as needed

Value in"DELAY" | "READY" | "FINISH"
delayMinutes?integer

Time to delay in minute, mandatory for DELAY action

Range1 <= value
newPickupHour?string

New pickup hour in ISO 8601 format, mandatory for DELAY action

Formatdate-time

Response Body

curl -X POST "http://localhost:4003/v1/orders/497f6eca-6276-4993-bfeb-53cbbbba6f08/DELAY" \  -H "Content-Type: application/json" \  -d '{    "delayMinutes": 15,    "newPickupHour": "2026-08-16T09:00:00.000Z"  }'
Empty