v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
ProjectManagement > ProjectTask

Bulk duplicates a Project task

What does it do?

This will create new project tasks with the same attributes as the project task ids passed as an argument.

What params does it accept?
  • ids: Project task ids
Who can use it?

Only companies who have enabled the projects_management feature and users with the permission of read projects.

post/api/2026-07-01/resources/project_management/project_tasks/bulk_duplicate

Request body

project_idstring

Project id where the tasks will be duplicated

subproject_idstring

Subproject id where the tasks will be duplicated

idsstring[] required

Task ids to be duplicated

exclude_assigneesboolean

Set this to true if you want to exclude assignees from the duplicated tasks

Example request

{
  "project_id": "1",
  "subproject_id": "1",
  "ids": [
    "1",
    "2",
    "3"
  ],
  "exclude_assignees": true
}

Response

OK

idstring required
project_idstring required

The ID of the project linked to the project task

subproject_idstring

The ID of the subproject linked to the project task

task_idstring required

The ID of the task linked to the project task

follow_upboolean required

If true, status changes related to the project will notify the author

Example response

[
  {
    "id": "789",
    "project_id": "123",
    "subproject_id": "456",
    "task_id": "780",
    "follow_up": true
  }
]