Remove delivery

You can delete deliveries from a created route.

Endpoint

PATCH {{SHIPPIFY_API_URL}}/v1/routes/remove

Request

PropertyTypeDescriptionRequiredConstraints

routeId

string

Route where you want to add deliveries

YES

deliveryId

string

list of delivery IDs you want to add to the route

YES

Separated by comma

Response

PropertyTypeDescription

code

string

Result code.

message

string

Result description.

data

object

Execution process data.

Example

curl --location --request PATCH 'https://api.shippify.co/v1/routes/remove' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXX' \
--header 'Cookie: locale=es' \
--data-raw '{
    "routeId": "r-shiinc-2217499",
    "deliveryId":"t-pruaas-4968"
}'