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

Creates a copy of the task list.

POST
https://api.awork.com/api/v1/projects/:projectId/tasklists/:taskListId/copy
POST
/api/v1/projects/:projectId/tasklists/:taskListId/copy
1curl -X POST https://api.awork.com/api/v1/projects/projectId/tasklists/taskListId/copy \
2 -H "Authorization: Bearer <token>"
Try it
200Successful
1{
2 "id": "123e4567-e89b-12d3-a456-426614174000",
3 "createdOn": "2021-03-22T15:00:00Z",
4 "createdBy": "123e4567-e89b-12d3-a456-426614174000",
5 "updatedOn": "2021-03-22T16:30:00Z",
6 "updatedBy": "123e4567-e89b-12d3-a456-426614174000",
7 "name": "Product and Marketing To-Dos",
8 "order": 2,
9 "isArchived": false,
10 "isHiddenForConnectUsers": true
11}
A new task list will be created with the same name as the original one. All tasks and subtasks will also be copied in this operation. Comments, files and activity logs are not copied. To copy a task list, the user needs to have 'ProjectPlanning' permissions in general or in the project the task list belongs to. <Check title="Required Permissions">Any authenticated user.</Check>
Was this page helpful?
Previous

Deletes the task list with the specified id.

Next
Built with
Deletes 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"
taskListIdstringRequiredformat: "uuid"

Response

OK
idstring or nullformat: "uuid"
The id of the task list.
createdOnstring or nullformat: "date-time"
The date this task list was created.
createdBystring or nullformat: "uuid"
The id of the user who created this task list.
updatedOnstring or nullformat: "date-time"
The date this task list was last modified.
updatedBystring or nullformat: "uuid"
The id of the user who last modified this task list.
namestring or null
The name of the list.
orderdouble or null
The order of the list.
isArchivedboolean or null
Whether the task list has been archived.
isHiddenForConnectUsersboolean or null
True if the task in this list will be not visible for external workspace users. False otherwise.
The id of the user who last modified this task list.
The name of the list.
The order of the list.
Whether the task list has been archived.
True if the task in this list will be not visible for external workspace users. False otherwise.
OK

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

A new task list will be created with the same name as the original one. All tasks and subtasks will also be copied in this operation. Comments, files and activity logs are not copied. To copy a task list, the user needs to have ‘ProjectPlanning’ permissions in general or in the project the task list belongs to.

Required Permissions
Any authenticated user.