## Delete document by ID or customId `documents.delete(strid)` **delete** `/v3/documents/{id}` Delete a document by ID or customId ### Parameters - `id: str` ### Example ```python import os from supermemory import Supermemory client = Supermemory( api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted ) client.documents.delete( "id", ) ```