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}
Permanently deletes a Memory Store and all its memory entries.
Path parameters
| Parameter | Type | Required | Description |
|---|
memory_store_id | string | Yes | Memory Store ID with the memstore_ prefix |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
Example request
curl -X DELETE "https://openapi.qoder.sh/api/v1/cloud/memory_stores/memstore_019e3bb8d50674d9b082b73709c29c87" \
-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 with the given ID does not exist |
Notes
- Deletion is irreversible.
- All memory entries and version records under the store are deleted.
- Stores can be deleted from any state (
active or archived).
- A successful delete returns HTTP 204 with no body.
See Errors for the full error envelope.