curl --request POST \
--url http://localhost:8080/api/v2/memories/episodic/delete \
--header 'Content-Type: application/json' \
--data '
{
"org_id": "universal",
"project_id": "universal",
"episodic_id": "",
"episodic_ids": []
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Delete episodic memories from a project.
This operation permanently removes one or more episodic memories from the
specified project. You may provide either episodic_id to delete a single
memory or episodic_ids to delete multiple memories in one request.
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 http://localhost:8080/api/v2/memories/episodic/delete \
--header 'Content-Type: application/json' \
--data '
{
"org_id": "universal",
"project_id": "universal",
"episodic_id": "",
"episodic_ids": []
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Specification model for deleting episodic memories.
The unique identifier of the organization.
- Must not contain slashes (`/`).
- Must contain only letters, numbers, underscores, hyphens, colon, and Unicode
characters (e.g., Chinese/Japanese/Korean). No slashes or other symbols
are allowed.
This value determines the namespace the project belongs to."MemVerge"
"AI_Labs"
The identifier of the project.
- Must be unique within the organization.
- Must not contain slashes (`/`).
- Must contain only letters, numbers, underscores, hyphens, colon, and Unicode
characters (e.g., Chinese/Japanese/Korean). No slashes or other symbols
are allowed.
This ID is used in API paths and resource locations."memmachine"
"research123"
"qa_pipeline"
The unique ID of the specific episodic memory."123"
"345"
A list of unique IDs of episodic memories.["123", "345"]["23"]Successful Response