> ## Documentation Index
> Fetch the complete documentation index at: https://studio.assembly.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Task Templates

> A task template created within a workspace used to pre-fill task name, description, and subtasks.

This resource represents a task template that is created within a workspace.

Note that Task Templates are available for workspaces that have the Tasks App enabled.

## Properties

**id** `string`\
The id of the task template.

**object** `string`\
Object type \[taskTemplate].

**name** `string`\
The name the task template, to be the default when creating tasks.

**description** `string`\
The description of the task template in HTML format, to be the default when creating tasks.

**createdDate** `string`\
The date the task template was created in RFC3339 format.

**subTaskTemplates** `array of objects`\
All of the subtask templates for the parent template.

```Text Example Task Template Object theme={null}
{
    "createdDate": "2025-05-06T15:22:37Z",
    "description": "Task template description",
    "id": "eddeb6a1-dfd7-4a60-9c8c-38ceed09bde9",
    "name": "Task template created as default",
    "object": "taskTemplate",
    "subTaskTemplates": [
        {
          "createdDate": "2025-12-19T15:45:50Z",
          "description": "<p></p>",
          "id": "a14a5ab1-c480-4f2c-b50b-3b9b61398b8f",
          "name": "Create customer profiles",
          "object": "taskTemplate"
        },
        {
          "createdDate": "2025-12-19T15:45:40Z",
          "description": "<p></p>",
          "id": "430241f4-52b2-4980-9c10-cc319aa01b60",
          "name": "Define your core values",
          "object": "taskTemplate"
        },
        {
          "createdDate": "2025-12-19T15:45:34Z",
          "description": "<p></p>",
          "id": "c8dbd1c4-fd47-4e2d-9b45-c922adcdf1ea",
          "name": "Upload purpose statement",
          "object": "taskTemplate"
        }
      ]

}
```
