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

Creates a new DocumentCollection

Deprecated
POST
https://api.getzep.com/api/v2/collections/:collectionName
POST
/api/v2/collections/:collectionName
$curl -X POST https://api.getzep.com/api/v2/collections/collectionName \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{}'
1{
2 "message": "string"
3}
If a collection with the same name already exists, an error will be returned.
Was this page helpful?
Previous

Deletes a DocumentCollection

Next
Built with

Path parameters

collectionNamestringRequired
Name of the Document Collection

Request

Document Collection
descriptionstringOptional<=1000 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