added
Delete recurring routes via API
over 4 years ago by Tyler Freckmann
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
}'