v1
latestOpenAPI 3.1.02026-07-24172151607.6 KBFolders
Create Folder from template
Create a new Folder using a Folder template within a Space. This endpoint allows you to create a folder with all its nested assets (lists, tasks, etc.) from a predefined template available in your Workspace. Publicly shared templates must be added to your Workspace before you can use them with the public API. This request can be run asynchronously or synchronously via the return_immediately parameter.
post/v2/space/{space_id}/folder_template/{template_id}
Path parameters
space_idstring required
ID of the Space where the Folder will be created
template_idstring required
Example:t-7162342
ID of the Folder template to use. Template IDs include a t- prefix (e.g., t-7162342). Retrieve available template IDs using the Get Folder Templates endpoint.
Request body
Response
Folder created successfully
Example response
{
"id": 90114316773,
"folder": {
"id": "90114316773",
"name": "Projects",
"orderindex": 0,
"override_statuses": true,
"hidden": false,
"space": {
"id": "90112667046",
"name": "Client Facing",
"access": true
},
"task_count": "0",
"archived": false,
"statuses": [
{
"id": "c90114316773_syqLtYOY",
"status": "complete",
"orderindex": 2,
"color": "#008844",
"type": "closed"
},
{
"id": "c90114316773_g9uxhsQM",
"status": "in progress",
"orderindex": 1,
"color": "#1090e0",
"type": "custom"
},
{
"id": "c90114316773_DCnaeiSB",
"status": "to do",
"orderindex": 0,
"color": "#87909e",
"type": "open"
}
],
"lists": [],
"permission_level": "create"
}
}