Skip to main content
POST
/
api
/
v2
/
memories
/
episodic
/
delete
Delete Episodic Memory
curl --request POST \
  --url https://localhost:8080/v1/api/v2/memories/episodic/delete \
  --header 'Content-Type: application/json' \
  --data '
{
  "episodic_id": "<string>",
  "org_id": "universal",
  "project_id": "universal"
}
'
{}

Body

application/json

Specification model for deleting episodic memories.

episodic_id
string
required
The unique ID of the specific episodic memory to be deleted.
org_id
string
default:universal
The unique identifier of the organization.

- Must not contain slashes (`/`).
- Must contain only letters, numbers, underscores, hyphens, and Unicode
characters (e.g., Chinese/Japanese/Korean). No slashes or other symbols
are allowed.

This value determines the namespace the project belongs to.
project_id
string
default:universal
The identifier of the project.

- Must be unique within the organization.
- Must not contain slashes (`/`).
- Must contain only letters, numbers, underscores, hyphens, 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.

Response

Successful Response