Info_Folders
Explore folder structures in Smartsheet, including user-level folders and workspace organization.
Table Specific Information
Select
Retrieve all Folders.
SELECT * FROM Info_Folders
Retrieve details for a Folder.
SELECT * FROM Info_Folders WHERE Id = '2035256120371076'
Retrieve Folders of a specified Workspace.
SELECT * FROM Info_Folders WHERE WorkspaceId = '2940085806098308'
Columns
| Name | Type | References | Description |
| Id [KEY] | String | A system-generated unique identifier for the folder, used to reference it programmatically. | |
| Name | String | The user-defined name of the folder, typically representing its content or purpose. | |
| Permalink | String | A direct, shareable URL linking to the folder within Smartsheet, useful for quick access. | |
| Favorite | Boolean | Indicates whether the user has marked the folder as a favorite for easier navigation in their Home tab. | |
| WorkspaceId | String | The unique identifier of the workspace that contains this folder, useful for context within a workspace hierarchy. |