cURL
curl --request DELETE \ --url https://apiweb.mile.app/api/v3/tasks/bulk \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "tasks": [ { "_id": "62067ee1cd77000042006f89" }, { "_id": "62067ee3cd77000042006f8b" } ] } '
{ "success": 2, "failed": 0, "tasks": [ { "status": true, "message": "Success", "_id": "62067ee1cd77000042006f89" }, { "status": true, "message": "Success", "_id": "62067ee3cd77000042006f8b" } ] }
Permanently deletes multiple tasks from the system in a single operation. This action cannot be undone.
Use a valid Bearer token to authenticate.
Show child attributes
Success
Total success delete task.
Total failed delete task.
Detail of delete task.