For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
        • GETGets a list of DocumentCollections
        • GETGets a DocumentCollection
        • POSTCreates a new DocumentCollection
        • DELDeletes a DocumentCollection
        • PATCHUpdates a DocumentCollection
        • POSTCreates Multiple Documents in a DocumentCollection
        • POSTBatch Deletes Documents from a DocumentCollection by UUID
        • POSTBatch Gets Documents from a DocumentCollection
        • PATCHBatch Updates Documents in a DocumentCollection
        • GETGets a Document from a DocumentCollection by UUID
        • DELDelete Document from a DocumentCollection by UUID
        • PATCHUpdates a Document
        • POSTSearches Documents in a DocumentCollection
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceDeprecatedDocument

Updates a Document

Deprecated
PATCH
https://api.getzep.com/api/v2/collections/:collectionName/documents/uuid/:documentUUID
PATCH
/api/v2/collections/:collectionName/documents/uuid/:documentUUID
$curl -X PATCH https://api.getzep.com/api/v2/collections/collectionName/documents/uuid/documentUUID \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{}'
1{
2 "message": "string"
3}
Updates a Document in a DocumentCollection by UUID
Was this page helpful?
Previous

Searches Documents in a DocumentCollection

Next
Built with

Path parameters

collectionNamestringRequired
Name of the Document Collection
documentUUIDstringRequired
UUID of the Document to be updated

Request

Document to be updated
document_idstringOptional<=40 characters
metadatamap from strings to anyOptional

Response

OK
messagestring

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
500
Internal Server Error