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}
Memory Store とそのすべてのメモリエントリを永続的に削除します。
パスパラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|
memory_store_id | string | はい | Memory Store ID(memstore_ プレフィックス) |
ヘッダー
| ヘッダー | 値 | 必須 |
|---|
| Authorization | Bearer $QODER_PAT | はい |
リクエスト例
curl -X DELETE "https://openapi.qoder.sh/api/v1/cloud/memory_stores/memstore_019e3bb8d50674d9b082b73709c29c87" \
-H "Authorization: Bearer $QODER_PAT"
レスポンス例
HTTP 204 No Content
レスポンスボディなし。削除成功。
エラーレスポンス
| HTTP | type | 説明 |
|---|
| 401 | TOKEN_INVALID | 認証トークンが提供されていないまたは無効 |
| 404 | not_found_error | 指定 ID の Memory Store が存在しない |
注意事項
- 削除操作は不可逆です
- この Store 配下のすべてのメモリエントリとバージョンレコードを同時に削除します
- Store の現在の状態(active/archived)に関わらず、直接削除可能です
- 削除成功時は HTTP 204 No Content を返します