Copy & Move Tasks
Copy task
Section titled “ Copy task ” POST
v3/projects/23423233/todolists/13964085/tasks/13966758/copy
creates a copy of the specified task.
Request Body
{
"project": 23423234,
"list": 13964086,
"include_subtasks": true,
"include_comments": true,
"include_attachments": true
} You can choose whether subtasks, comments, and attachments should be copied along with the task.
200 OK is returned along with the newly created task details.
{
"id": 13966799,
"title": "Get it signed",
"copied_from": 13966758
} Move task
Section titled “ Move task ” POST
v3/projects/23423233/todolists/13964085/tasks/13966758/move
moves a task to another project, task list, or workflow stage.
Request Body
{
"project": 23423234,
"list": 13964086,
"stage": 6074498297
} Any of the destination values can be omitted if you only want to move the task within the same project or task list.
200 OK is returned along with the updated task information.
{
"id": 13966758,
"title": "Get it signed",
"project": {
"id": 23423234
},
"list": {
"id": 13964086
},
"stage": {
"id": 6074498297,
"name": "In Progress"
}
}