Skip to main content

Create Memory Collection

POST /api/memory-collections

Creates a new memory collection.

Code Examples

curl --request POST \
--url 'https://tess.pareto.io/api/memory-collections' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"name": "My Collection"
}'

Request Body

ParameterTypeRequiredDescription
namestringYesName of the collection

Response

{
"message": "Collection created successfully",
"collection": {
"user_id": 1,
"name": "string",
"id": 2
}
}

Try it out!

Authentication

This endpoint requires Bearer token authentication.

Test Endpoint