cURL
curl --request POST \ --url https://api.tess.im/memory-collections \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
Creates a new memory collection.
Documentation IndexFetch the complete documentation index at: https://docs.tess.im/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.tess.im/llms.txt
Use this file to discover all available pages before exploring further.
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" }'
{ "message": "Collection created successfully", "collection": { "user_id": 1, "name": "string", "id": 2 } }