Change delivery status

You can use the endpoint to change the status to delivery.

To cancel the task you can use this endpoint with canceled status.

Endpoint

PATCH {{SHIPPIFY_API_URL}}/v1/deliveries/:id/status

Request

Params

Body

Response

Example

curl --location --request PATCH 'https://api.shippify.co/v1/deliveries/t-pruaas-4973/status' \
--header 'Authorization: Basic XXXXXXXXXXXXXXXXXXXXXXXXXXX=' \
--header 'Content-Type: application/json' \
--header 'Cookie: locale=es' \
--data-raw '{
    "status": "processing",
    "comment": "TEST",
    "author": {
        "email": "test@shippify.co",
        "id": 999,
        "name": "Test operator",
        "type": "operator"
    }
}'