# List folders (deprecated) Gets a list of folders in a given folder. The list contains an abbreviated Folder object for each folder. > Note: For pagination guidance, refer to Pagination. > DEPRECATED - As early as the sunset date specified in this Changelog entry, this endpoint will be removed. See the List folder children endpoint for replacement functionality. Endpoint: GET /folders/{folderId}/folders Version: 2.0.0 Security: APIToken, OAuth2 ## Header parameters: - `Authorization` (string) API Access Token used to authenticate requests to Smartsheet APIs. - `smartsheet-integration-source` (string) Uses the following metadata to distinguish between human-initiated API requests and third-party service-initiated calls by AI Connectors or ITSM: - Integration source type - Organization name - Integration source name Format: TYPE,OrgName,SourceName Examples: AI,SampleOrg,My-AI-Connector-v2 SCRIPT,SampleOrg2,Accounting-updater-script APPLICATION,SampleOrg3,SheetUpdater Example: "AI,SampleOrg,My-AI-Connector-v2" ## Path parameters: - `folderId` (number, required) ID of the folder being accessed. ## Query parameters: - `includeAll` (boolean) If true, include all results, that is, do not paginate. Mutually exclusive with page and pageSize (they are ignored if includeAll=true is specified). - `page` (number) Which page to return. Defaults to 1 if not specified. If you specify a value greater than the total number of pages, the last page of results is returned. - `pageSize` (number) The maximum number of items to return per page. Unless otherwise stated for a specific endpoint, defaults to 100. If only page is specified, defaults to a page size of 100. For reports, the default is 100 rows. If you need larger sets of data from your report, returns a maximum of 10,000 rows per request. ## Response 200 fields (application/json): - `pageNumber` (number) The current page in the full result set that the data array represents. NOTE when a page number greater than totalPages is requested, the last page is instead returned. Example: 1 - `pageSize` (number,null) The number of items in a page. Omitted if there is no limit to page size (and hence, all results are included). Unless otherwise specified, this defaults to 100 for most endpoints. Example: 50 - `totalPages` (number) The total number of pages in the full result set. Example: 25 - `totalCount` (number) The total number of items in the full result set. Example: 136 - `result` (array) - `result.id` (number) Folder ID. - `result.folders` (array) Folders contained in folder. - `result.name` (string) Folder name. - `result.permalink` (string) URL that represents a direct link to the folder in Smartsheet. - `result.reports` (array) Reports contained in folder. - `result.reports.id` (number) Asset ID. - `result.reports.name` (string) Asset name. - `result.reports.permalink` (string) URL that represents a direct link to the asset in Smartsheet. - `result.sheets` (array) Sheets contained in folder. - `result.sights` (array) Dashboards contained in folder. - `result.sights.createdAt` (any) - `result.sights.modifiedAt` (any) - `result.templates` (array) Templates contained in folder. - `result.favorite` (boolean) Deprecated Returned only if the user has marked the folder as a favorite in their "Home" tab (value = true). ## Response default fields (application/json): - `refId` (string) The ID of the specific error occurrence. Please include this information when contacting Smartsheet support. - `errorCode` (number) Custom error code from Smartsheet. See the complete [Error Code List](/api/smartsheet/error-codes). - `message` (string) Descriptive error message.