curl --request POST \
--url https://api.memmachine.ai/v2/memories/episodic/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"episodic_ids": [
"123",
"345"
],
"project_id": ""
}
'{
"code": 123,
"message": "<string>"
}Delete episodic memories from a project.
This operation permanently removes one or more episodic memories from the
specified project. Provide episodic_ids with the list of memory IDs to delete.
This action cannot be undone.
If any of the specified episodic memories do not exist, a not-found error is returned for those entries.
curl --request POST \
--url https://api.memmachine.ai/v2/memories/episodic/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"episodic_ids": [
"123",
"345"
],
"project_id": ""
}
'{
"code": 123,
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Specification model for deleting episodic memories.
Successful Response