v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Templates

Get Folder Templates

View the Folder templates available in a Workspace.

Use this endpoint to retrieve Folder template IDs for use with the Create Folder From Template endpoint.

Template IDs are returned with a t- prefix (e.g., t-7162342). Pass the full ID including the prefix as the template_id path parameter when creating a Folder from a template.

get/v2/team/{team_id}/folder_template

Path parameters

team_idnumber required
Example:123

Workspace ID

Headers

Content-Type'application/json' required
Example:application/json

Response

Folder templates retrieved successfully.

Example response

{
  "templates": [
    {
      "name": "Folder Template 1",
      "id": "t-7162342"
    },
    {
      "name": "Folder Template 2",
      "id": "t-42618842"
    }
  ]
}