Documentation Index
Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
Use this file to discover all available pages before exploring further.
DELETE /v1/memory_stores/{memory_store_id}/memories/{memory_id}
Deletes the specified memory entry. The deletion produces a version record with action: "deleted".
Path parameters
| Parameter | Type | Required | Description |
|---|
memory_store_id | string | Yes | Memory Store ID with the memstore_ prefix |
memory_id | string | Yes | Memory entry ID with the mem_ prefix |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
Example request
curl -X DELETE "https://openapi.qoder.sh/api/v1/cloud/memory_stores/memstore_xxx/memories/mem_xxx" \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 204 No Content
No response body. The delete succeeded.
Errors
| HTTP | Type | Trigger |
|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Memory Store or memory entry does not exist |
Notes
- The delete returns HTTP 204 with no body.
- The deletion produces a version record with
action: "deleted" (visible through the version list endpoint).
- The entry is no longer accessible through the get endpoint after deletion.
- For deletion records,
content_sha256 is an empty string and size is 0.
See Errors for the full error envelope.