Skip to main content
All CollectionsAPI
Delete multiple tasks
Delete multiple tasks
e
Written by eLogii
Updated over a week ago

You can delete multiple tasks using the POST request - https://api-35.elogii.com/tasks/removeMany. Where the payload contains IDs of the tasks you want to delete. The task IDs can be found in the response received when you GET tasks and GET tasks for a specific date/date range

Request

Sample payload

{
"ids":[
"66260185bff100de876444ba",
"66260185bff100de876444bc",
"66260185bff100de876444be"
]
}

Sample response

{
"result": 3,
"errors": [],
"ids": [
"66260185bff100de876444ba",
"66260185bff100de876444bc",
"66260185bff100de876444be"
]
}

Did this answer your question?