Update document
Update a document with any content type (text, url, file, etc.) and metadata
Parameters
Optional tag this document should be containerized by. This can be an ID for your user, a project ID, or any other identifier you wish to use to group documents.
(DEPRECATED: Use containerTag instead) Optional tags this document should be containerized by. This can be an ID for your user, a project ID, or any other identifier you wish to use to group documents.
The content to extract and process into a document. This can be a URL to a website, a PDF, an image, or a video.
Plaintext: Any plaintext format
URL: A URL to a website, PDF, image, or video
We automatically detect the content type from the url’s response format.
Optional custom ID of the document. This could be an ID from your database that will uniquely identify this document.
Update document
import os
from supermemory import Supermemory
client = Supermemory(
api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted
)
document = client.documents.update(
id="id",
)
print(document.id){
"id": "id",
"status": "status"
}Returns Examples
{
"id": "id",
"status": "status"
}