Skip to content
Get started

Cancel a worker schedule

DELETE/api/workers/{workerId}/schedules/{scheduleId}

Cancel a scheduled task for a worker.

Path ParametersExpand Collapse
workerId: string
scheduleId: string
ReturnsExpand Collapse
cancelled: boolean

Cancel a worker schedule

curl https://v3.handinger.com/api/workers/$WORKER_ID/schedules/$SCHEDULE_ID \
    -X DELETE \
    -H "Authorization: Bearer $HANDINGER_API_KEY"
{
  "cancelled": true
}
Returns Examples
{
  "cancelled": true
}