Deprecated. This function is deprecated but will continue to work. To set a task as completed, see the wix-crm.v2.Tasks.updateTask() function.
If this function is already in your code, it will continue to work.
To stay compatible with future changes, migrate to
wix-crm.v2.Tasks.updateTask()
.
To migrate to the new function:
Add the new import statement:
If you plan to migrate all functions that use wixCrmBackend
,
remove the original import wixCrmBackend
statement.
Look for any code that uses wixCrmBackend.tasks.removeTask()
,
and replace it with with tasks.updateTask()
. To set the task as completed,
set the status
field to "COMPLETED"
.
Test your changes to make sure your code behaves as expected.
Sets a task as completed.
The completeTask()
function returns a Promise that resolves to the ID of the
the task after it is set as completed.
ID of the task to set as complete.
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.