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 add_document_to_folder(
folder_id_or_name: str,
document_id: str,
) -> Dict[str, str]
async def add_document_to_folder(
folder_id_or_name: str,
document_id: str,
) -> Dict[str, str]
Parameters
folder_id_or_name (str): Folder identifier. Accepts either the folder’s UUID or its name.
document_id (str): Identifier of the document to move into the folder.
Returns
Dict[str, str]: Dictionary with status and message describing the result.
Examples
from morphik import Morphik
db = Morphik()
folder = db.get_folder("marketing_docs")
db.add_document_to_folder(folder.id, "doc_123")
db.add_document_to_folder("marketing_docs", "doc_456")
from morphik import AsyncMorphik
async with AsyncMorphik() as db:
folder = await db.get_folder("marketing_docs")
await db.add_document_to_folder(folder.id, "doc_123")
await db.add_document_to_folder("marketing_docs", "doc_456")