Skip to main content

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

ParameterTypeRequiredDescription
memory_store_idstringYesMemory Store ID with the memstore_ prefix
memory_idstringYesMemory entry ID with the mem_ prefix

Headers

HeaderRequiredDescription
AuthorizationYesBearer $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

HTTPTypeTrigger
401TOKEN_INVALIDMissing or invalid authentication token
404not_found_errorMemory 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.