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.
GET /v1/memory_stores/{memory_store_id}
ID を指定して単一の Memory Store の詳細情報を取得します。
パスパラメータ
| パラメータ | 型 | 必須 | 説明 |
|---|
memory_store_id | string | はい | Memory Store ID(memstore_ プレフィックス) |
ヘッダー
| ヘッダー | 値 | 必須 |
|---|
| Authorization | Bearer $QODER_PAT | はい |
リクエスト例
curl -X GET "https://openapi.qoder.sh/api/v1/cloud/memory_stores/memstore_019e3bb8d50674d9b082b73709c29c87" \
-H "Authorization: Bearer $QODER_PAT"
レスポンス例
HTTP 200 OK
MemoryStore オブジェクトを返します。
{
"id": "memstore_019e3bb8d50674d9b082b73709c29c87",
"type": "memory_store",
"name": "doc-test-store",
"description": "テスト用",
"status": "active",
"entry_count": 0,
"total_size": 0,
"metadata": {},
"created_at": "2026-05-18T15:33:49.449264Z",
"updated_at": "2026-05-18T15:33:49.449264Z"
}
レスポンスフィールド
| フィールド | 型 | 説明 |
|---|
id | string | 一意識別子 |
type | string | 固定値 "memory_store" |
name | string | ストア名 |
description | string | ストアの説明 |
status | string | 状態:"active" / "archived" / "deleted" |
entry_count | int64 | メモリエントリ数 |
total_size | int64 | 総ストレージサイズ(バイト) |
metadata | object | カスタムメタデータ |
archived_at | string | アーカイブ時刻(アーカイブ状態のみこのフィールドあり) |
created_at | string | 作成時刻(ISO 8601) |
updated_at | string | 最終更新時刻(ISO 8601) |
エラーレスポンス
| HTTP | type | 説明 |
|---|
| 401 | TOKEN_INVALID | 認証トークンが提供されていないまたは無効 |
| 404 | not_found_error | 指定 ID の Memory Store が存在しない |
エラー例
{
"error": {
"message": "MemoryStore 'memstore_nonexistent' was not found.",
"type": "not_found_error"
},
"type": "error"
}