Implement endpoint `DELETE /api/v2/global-tasks/{identifier}` to delete a customer. * [x] return 204 in case of success * [x] create method in the business layer * [x] `GET /api/v2/global-tasks/{identifier}` returns 404, after delete * [x] return an empty body in case of success * [x] return 404 when the object is not found * [x] return 403 when user is denied permission * [x] deprecate `POST /global/tasks/delete/<int:cur_id>` * [x] openapi: document endpoint * [x] openapi: deprecate `POST /global/tasks/delete/<int:cur_id>`
Implement endpoint
DELETE /api/v2/global-tasks/{identifier}to delete a customer.GET /api/v2/global-tasks/{identifier}returns 404, after deletePOST /global/tasks/delete/<int:cur_id>POST /global/tasks/delete/<int:cur_id>