Skip to main content
DELETE
/
memory-collections
/
{collectionId}
Delete Memory Collection
curl --request DELETE \
  --url https://api.tess.im/memory-collections/{collectionId} \
  --header 'Authorization: Bearer <token>'

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 DELETE \
  --url 'https://api.tess.im/memory-collections/{collectionId}' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Path Parameters

collectionId
integer
required
Collection ID

Response

{
  "message": "Collection deleted successfully"
}

Error Responses

Collection not found (404)

{
  "message": "Collection not found"
}

Cannot delete default collection (403)

{
  "message": "Default collection cannot be deleted"
}