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

Adds the tasks to the task list with the specified id.

POST
https://api.awork.com/api/v1/projects/:projectId/tasklists/:taskListId/addtasks
POST
/api/v1/projects/:projectId/tasklists/:taskListId/addtasks
1curl -X POST https://api.awork.com/api/v1/projects/projectId/tasklists/taskListId/addtasks \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '[
5 {
6 "taskId": "123e4567-e89b-12d3-a456-426614174000"
7 }
8]'
Try it
200Successful
1[
2 {
3 "id": "123e4567-e89b-12d3-a456-426614174000",
4 "order": 3
5 }
6]
Adds the tasks to the task list with the specified id. To add a new task to 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

Changes the project of the task list with the specified id.

Next
Built with
Changes the project of the task list with the specified id.

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 add to the list.
taskIdstringRequiredformat: "uuid"
The task id added to the list.
orderdouble or nullOptional
The order of the task in the list.

Response

OK
idstringformat: "uuid"
The id of the list to move the task to or to change the order for.
orderdouble or null
The order of the task in the list. If null, the task is moved to the end of the list.
The id of the project.
The id of the task list.

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

OK

Adds the tasks to the task list with the specified id. To add a new task to a project task list, the user needs manage permissions on the project-planning-data feature.

Required Permissions
Any authenticated user.