Skip to main content

Parameters

This method takes no parameters.

Returns

  • List[FolderSummary]: List of folder summaries with document counts

Examples

FolderSummary Properties

The FolderSummary objects have the following properties:
  • id (str): Unique folder identifier
  • name (str): Folder name
  • full_path (str | None): Canonical folder path (e.g., /projects/alpha/specs)
  • parent_id (str | None): Parent folder ID
  • depth (int | None): Depth in the hierarchy (root = 1)
  • description (str | None): Folder description
  • doc_count (int): Number of documents in the folder
  • updated_at (str | None): Last update timestamp

Notes

  • This is a lightweight method for getting an overview of all folders.
  • For more detailed information including document lists and status counts, use get_folders_details.
  • Returns only folders accessible to the authenticated user.