curl --request POST \
--url http://localhost:3000/v2/tasks/delete \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'Delete multiple tasks
curl --request POST \
--url http://localhost:3000/v2/tasks/delete \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'Task IDs to delete
Task IDs to delete
Tasks deleted successfully
Was this page helpful?