Documentation Index
Fetch the complete documentation index at: https://databridge-output-format.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
def list_folders() -> List[Folder]
async def list_folders() -> List[Folder]
Returns
List[Folder]: Collection of folders the current auth context can access.
Examples
from morphik import Morphik
db = Morphik()
for folder in db.list_folders():
print(folder.name, folder.id)
from morphik import AsyncMorphik
async with AsyncMorphik() as db:
folders = await db.list_folders()
for folder in folders:
print(folder.name, folder.id)