curl --request DELETE \
--url https://{host}/api/v3/workcycleExceptions/{id} \
--header 'Authorization: <authorization>'{
"Status": 401,
"Message": "Unauthorized"
}❗Note: The WorkCycleException, once deleted, stays available in the API.
In order to filter out the deleted WorkCycleException, you may use the deletedAt
query parameter:
GET /api/v3/workcycleexceptions?deletedAt=null HTTPS/1.1
Host: example.ilucca.net
Authorization: lucca application=XXXX
curl --request DELETE \
--url https://{host}/api/v3/workcycleExceptions/{id} \
--header 'Authorization: <authorization>'{
"Status": 401,
"Message": "Unauthorized"
}Was this page helpful?