Project Templates

Learn more about project templates.

Task Bundles

Task Bundles (called “Task Templates” in the awork UI) are reusable containers that hold templates for tasks and task lists. They simplify recurring processes by allowing you to import a complete set of tasks and lists into projects.

Each Project Template has exactly one Task Bundle associated with it. However, Task Bundles can also exist independently and be used for importing into running projects.

Three core concepts:

  • Task Bundle: Top-level container that can be global or private, holds task templates and task list templates
  • Task List Template: Defines task lists (boards/columns) that will be created when the bundle is applied to a project
  • Task Template: Defines individual tasks with properties like name, description, priority, planned duration, dependencies, and relative dates

When a task bundle is applied to a project, it creates actual task lists and tasks based on the templates.

Creating a Task Bundle

The only required field for creating a task bundle is the name:

Create a new task bundle
1curl -X POST https://api.awork.com/api/v1/taskbundles \
2 -H 'Content-Type: application/json' \
3 -d '{
4 "name": "Website Launch",
5 "description": "Complete task bundle for launching a new website",
6 "icon": "rocket"
7 }'

Creating a Task List Template

Once you have a task bundle, you can create task list templates within it:

Create a task list template
1curl -X POST https://api.awork.com/api/v1/taskbundles/123e4567-e89b-12d3-a456-426614174000/tasklisttemplates \
2 -H 'Content-Type: application/json' \
3 -d '{
4 "name": "Design",
5 "order": 1
6 }'

Creating a Task Template

Create task templates within a task bundle:

Create a task template
1curl -X POST https://api.awork.com/api/v1/taskbundles/123e4567-e89b-12d3-a456-426614174000/tasktemplates \
2 -H 'Content-Type: application/json' \
3 -d '{
4 "name": "Create wireframe mockups",
5 "description": "Design initial wireframes for the homepage",
6 "isPrio": false,
7 "plannedDuration": 14400,
8 "typeOfWorkId": "123e4567-e89b-12d3-a456-426614174000"
9 }'

Adding Task Templates to a Task List Template

Assign task templates to specific task list templates:

Assign task templates to a list
1curl -X POST https://api.awork.com/api/v1/taskbundles/123e4567-e89b-12d3-a456-426614174000/tasklisttemplates/456e4567-e89b-12d3-a456-426614174000/addtasktemplates \
2 -H 'Content-Type: application/json' \
3 -d '[
4 {
5 "taskTemplateId": "789e4567-e89b-12d3-a456-426614174000"
6 }
7 ]'

Applying a Task Bundle to a Project

Once your task bundle is set up, apply it to a project to create actual tasks and task lists.

When a task bundle is applied:

  • Tasks are always created in the project
  • Task lists are merged based on their name (existing lists with matching names are reused)
Apply task bundle to project
1curl -X POST https://api.awork.com/api/v1/projects/123e4567-e89b-12d3-a456-426614174000/addtaskbundle \
2 -H 'Content-Type: application/json' \
3 -d '{
4 "taskBundleId": "123e4567-e89b-12d3-a456-426614174000"
5 }'