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} Permanently deletes a Memory Store and all its memory entries.

Path parameters

ParameterTypeRequiredDescription
memory_store_idstringYesMemory Store ID with the memstore_ prefix

Headers

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

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