Eliminar una tarea
Tasks
DELETE /v1/crm/tasks/:id
Permanently delete a task. There is no undo.
DELETE
Eliminar una tarea
Deletes a task. The deletion is permanent — there is no soft-delete flag and no restore endpoint.
To take a task off someone’s list while keeping the record, set its status to
cancelled or completed with PATCH /v1/crm/tasks/:id instead.
Endpoint
Required scope
crm:tasks:delete
Headers
Path parameters
Example request
Response
204 No Content
The task was deleted. The response body is empty.401 Unauthorized
Missing, invalid, revoked, or expired token.403 Forbidden
The token does not have thecrm:tasks:delete scope.