Skip to main content
POST
/
v2
/
memories
/
episodic
/
delete
Delete_Episodic Memory
curl --request POST \
  --url https://api.memmachine.ai/docs/v2/memories/episodic/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "episodic_id": "",
  "episodic_ids": []
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Specification model for deleting episodic memories.

episodic_id
string
default:""
The unique ID of the specific episodic memory.
Examples:

"123"

"345"

episodic_ids
string[]
A list of unique IDs of episodic memories.
Examples:
["123", "345"]
["23"]

Response

Successful Response