SupportDeveloper ForumLogin
  • Overview
    • Introduction
    • Getting Started
    • Authentication
    • Error Handling
    • Pagination
    • Filtering
    • Ordering
    • Rate Limits
    • Permissions
    • Webhooks
    • MCP Server
    • Versioning
    • Changelog
    • Support
  • API v1 Reference
    • Projects Overview
    • Tasks Overview
    • Time Tracking Overview
    • Documents Overview
    • Search Overview
    • Companies Overview
    • Users Overview
    • Files & Images Overview
    • Custom Fields Overview
    • Workload & Planning Overview
    • Project Templates Overview
    • Login & Access Overview
    • API Management Overview
LogoLogo
SupportDeveloper ForumLogin
API v1 ReferenceTask Lists

Removes the tasks from the task list with the specified id.

POST
https://api.awork.com/api/v1/projects/:projectId/tasklists/:taskListId/removetasks
POST
/api/v1/projects/:projectId/tasklists/:taskListId/removetasks
1curl -X POST https://api.awork.com/api/v1/projects/projectId/tasklists/taskListId/removetasks \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '[
5 "123e4567-e89b-12d3-a456-426614174000"
6]'
Try it
204No Content
1{}
To remove a task from a project task list, the user needs manage permissions on the project-planning-data feature. <Check title="Required Permissions">Any authenticated user.</Check>
Was this page helpful?
Previous

Archives or unarchives the task list with the specified id.

Next
Built with
Archives or unarchives the task list with the specified id.

To remove a task from a project task list, the user needs manage permissions on the project-planning-data feature.

Required Permissions
Any authenticated user.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

projectIdstringRequiredformat: "uuid"
The id of the project.
taskListIdstringRequiredformat: "uuid"
The id of the task list.

Request

The ids of the tasks to remove from the list.

Response

No Content
No Content