メインコンテンツへスキップ
GET /v1/memory_stores/{memory_store_id} 単一の Memory Store オブジェクトを取得します。

パスパラメータ

パラメータ必須説明
memory_store_idstringはいMemory Store ID(memstore_ プレフィックス)

ヘッダー

ヘッダー必須
AuthorizationBearer $QODER_PATはい

リクエスト例

curl -X GET "https://api.qoder.com/api/v1/cloud/memory_stores/memstore_019e3bb8d50674d9b082b73709c29c87" \
  -H "Authorization: Bearer $QODER_PAT"

レスポンス例

HTTP 200 OK
{
  "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"
}

レスポンスフィールド

フィールド説明
idstringMemory Store ID、memstore_ プレフィックス
typestring固定値 "memory_store"
namestringストア名
descriptionstringストアの説明
statusstringストアの状態。Memory Store のステータスを参照
entry_countintegerアクティブなメモリエントリ数
total_sizeintegerアクティブなメモリエントリの総サイズ(バイト)
metadataメタデータオブジェクトカスタムメタデータ
archived_atstringストアがアーカイブされている場合のみ返される
created_atstringUTC 作成時刻
updated_atstringUTC 最終更新時刻

エラーレスポンス

HTTPtype説明
401authentication_error認証トークンが提供されていないまたは無効
404not_found_error指定 ID の Memory Store が存在しない

関連項目

Memory Stores

Agent に Session をまたいだ永続メモリを与える。