clickup_get_folder_templates
List folder templates in a ClickUp workspace, returning their IDs for use in creating folders from templates.
Instructions
List the Folder templates available in a Workspace.
Calls GET /team/{team_id}/folder_template. Template ids are
t--prefixed and feed directly into clickup_create_folder_from_template.
When to Use:
To discover which Folder template id to pass to
clickup_create_folder_from_template.
When NOT to Use:
To list actual Folders in a Space — use
clickup_get_folders.
Returns:
A markdown or JSON list of templates, or an Error ... string.
Pagination:
ClickUp returns the full template array in one response; this tool
slices it client-side via limit/offset for context-window safety.
Examples: params = {"team_id": "90130912", "limit": 20, "offset": 0}
Error Handling:
404 means team_id doesn't exist or isn't accessible.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |