Skip to main content
DELETE
/
memories
/
{memoryId}
Delete Memory
curl --request DELETE \
  --url https://api.tess.im/memories/{memoryId} \
  --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/memories/{memoryId}' \
  --header 'Authorization: Bearer YOUR_API_KEY'

Path Parameters

memoryId
integer
required
ID of the memory

Response

{
"message": "Memory deleted successfully!"
}

Response Codes

Status CodeDescription
200Success
404Memory not found
500Server error

Error Responses

404 Not Found

{
  "message": "Memory not found!"
}

500 Server Error

{
  "message": "Memory deletion failed!",
  "error": "Error message details"
}