## Cancel a worker schedule **delete** `/api/workers/{workerId}/schedules/{scheduleId}` Cancel a scheduled task for a worker. ### Path Parameters - `workerId: string` - `scheduleId: string` ### Returns - `cancelled: boolean` ### Example ```http curl https://v3.handinger.com/api/workers/$WORKER_ID/schedules/$SCHEDULE_ID \ -X DELETE \ -H "Authorization: Bearer $HANDINGER_API_KEY" ``` #### Response ```json { "cancelled": true } ```