Skip to main content
POST
/
memory-collections
Create Memory Collection
curl --request POST \
  --url https://api.tess.im/memory-collections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.tess.im/llms.txt

Use this file to discover all available pages before exploring further.

Code Examples

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

Request Body

name
string
required
Name of the collection

Response

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