Folder
Folders
Returns JSON representation of the Folder tree
The ID of the Folder to return
Filter by Folder name
Filter by exact Folder name match
Override the home folder ID used when building the tree view
successful operation
Class Folder
The ID of this Folder
The type of folder (home or root)
The name of this Folder
The folderId of the parent of this Folder
Flag indicating whether this is root Folder
An array of children folderIds
Date this Folder was created
Date this Folder was last modified
GET /api/folders HTTP/1.1
Accept: */*
successful operation
[
{
"id": 1,
"type": "text",
"text": "text",
"parentId": 1,
"isRoot": 1,
"children": "text",
"createdDt": "text",
"modifiedDt": "text"
}
]Add a new Folder to the specified parent Folder
Folder Name
The ID of the parent Folder, if not provided, Folder will be added under Root Folder
successful operation
Class Folder
The ID of this Folder
The type of folder (home or root)
The name of this Folder
The folderId of the parent of this Folder
Flag indicating whether this is root Folder
An array of children folderIds
Date this Folder was created
Date this Folder was last modified
POST /api/folders HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 33
"text='text'&parentId='text'"successful operation
{
"id": 1,
"type": "text",
"text": "text",
"parentId": 1,
"isRoot": 1,
"children": "text",
"createdDt": "text",
"modifiedDt": "text"
}Returns a single decorated Folder including sharing, usage and buttons
The ID of the Folder to return
Filter by Folder name
Filter by exact Folder name match
Override the home folder ID used when building the tree view
successful operation
Class Folder
The ID of this Folder
The type of folder (home or root)
The name of this Folder
The folderId of the parent of this Folder
Flag indicating whether this is root Folder
An array of children folderIds
Date this Folder was created
Date this Folder was last modified
GET /api/folders/{folderId} HTTP/1.1
Accept: */*
successful operation
[
{
"id": 1,
"type": "text",
"text": "text",
"parentId": 1,
"isRoot": 1,
"children": "text",
"createdDt": "text",
"modifiedDt": "text"
}
]Edit existing Folder
Folder ID to edit
Folder Name
successful operation
Class Folder
The ID of this Folder
The type of folder (home or root)
The name of this Folder
The folderId of the parent of this Folder
Flag indicating whether this is root Folder
An array of children folderIds
Date this Folder was created
Date this Folder was last modified
PUT /api/folders/{folderId} HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 15
"text='text'"successful operation
{
"id": 1,
"type": "text",
"text": "text",
"parentId": 1,
"isRoot": 1,
"children": "text",
"createdDt": "text",
"modifiedDt": "text"
}Last updated
Was this helpful?

