跳转到主要内容
POST /api/v1/forward/sessions/{session_id}/archive 归档 Session 后,列表接口默认不再返回该 Session。

请求头

Header是否必填说明
AuthorizationBearer <PAT>
Idempotency-Key有副作用请求可选的幂等键。

路径参数

参数类型是否必填说明
session_idstringSession ID。

示例请求

curl -s -X POST 'https://api.qoder.com/api/v1/forward/sessions/sess_xxx/archive' \
  -H "Authorization: Bearer $QODER_PAT"

示例响应

HTTP 200 OK
{
  "id": "sess_xxx",
  "type": "session",
  "identity_id": "idn_xxx",
  "template": {
    "id": "tmpl_support",
    "type": "template",
    "name": "Support assistant",
    "model": "ultimate",
    "version": 3
  },
  "source_type": "api",
  "status": "idle",
  "title": "Customer support session",
  "incremental_streaming_enabled": true,
  "metadata": {},
  "config": {
    "environment_variables": {
      "API_KEY": "sk-xxx"
    }
  },
  "stats": {
    "active_seconds": 0,
    "duration_seconds": 0
  },
  "usage": {
    "credits": 13.0
  },
  "archived_at": "2026-06-22T12:00:00Z",
  "created_at": "2026-06-22T10:00:00Z",
  "updated_at": "2026-06-22T12:00:00Z"
}

响应字段

字段类型说明
返回值object归档后的 Session 对象,archived_at 非空。

错误

HTTPTypeCode触发条件
404not_found_errorsession_not_foundSession 不存在。
409conflict_errorsession_archivedSession 已归档。
401authentication_errorauthentication_requiredPAT 无效或已过期。

注意事项

  • 当前不提供恢复接口。
  • 使用 List Sessions 的 include_archived=true 查询已归档 Session。

相关

列出 Sessions

获取 Session