Change the status of a route

You can use this endpoint to change the status of all deliveries within a route.

Update the status of a route

patch

Update the status of a route, including all its deliveries.

Autorizaciones
AuthorizationstringRequerido
Parámetros de ruta
idstringRequerido

Identifier of the route to change its status.

Cuerpo
statusstring · enumRequerido

New status of the route

Example: hold_by_courierValores posibles:
commentstringRequerido

Comment of the change

Example: Dangerous area
Respuestas
200

Successful operation

application/json
patch
/v1/routes/{id}/status

Use cases

Cancel a route
{
    "status": "canceled",
    "comment": "",
    "author": {
        "type": "operator",
        "id": 1,
        "name": "Juan Perez",
        "email": "[email protected]"
    }
}
Complete a route

Última actualización