added

Delete recurring routes via API

You can now delete recurring routes via the DELETE /v1/fleet/dispatch/routes/{id} endpoint by setting apply_to_future_routes to true in the request body. For example

curl --request DELETE 'https://api.samsara.com/v1/fleet/dispatch/routes/{id}' \
--header 'Authorization: Bearer <<token>>' \
--data-raw '{
    "apply_to_future_routes": true
}'