メインコンテンツへスキップ
GET /api/v1/forward/schedules/{schedule_id} 完全な Schedule オブジェクトを返します。アーカイブ済みのスケジュールも ID で引き続きクエリできます。

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

Path parameters

ParameterTypeRequiredDescription
schedule_idstringYesForward Schedule ID。

Example request

curl -s -X GET 'https://api.qoder.com/api/v1/forward/schedules/sched_019f00112233445566778899aabbccdd' \
  -H "Authorization: Bearer $QODER_PAT"

Example response

HTTP 200 OK
{
  "id": "sched_019f00112233445566778899aabbccdd",
  "identity_id": "idn_019eabc123",
  "template_id": "tmpl_support",
  "name": "Daily tech brief",
  "description": "Generate a daily technology news summary",
  "status": "active",
  "paused_reason": null,
  "initial_events": [
    {
      "type": "user.message",
      "content": "Summarize current technology news in five bullet points."
    }
  ],
  "execution": {
    "session_mode": "new_session",
    "max_concurrent_runs": 1,
    "max_attempts": 1,
    "timeout_ms": 300000
  },
  "trigger_policy": {
    "type": "cron",
    "expression": "0 9 * * *",
    "timezone": "Asia/Shanghai",
    "upcoming_runs_at": ["2026-06-23T01:00:00Z"]
  },
  "environment_id": "env_019e64e01a137caf953ac2ac7b42ec5c",
  "sinks": [],
  "metadata": {},
  "archived_at": null,
  "created_at": "2026-06-22T10:00:00Z",
  "updated_at": "2026-06-22T10:00:00Z"
}

Response fields

Schedule オブジェクトを返します。

Errors

HTTPTypeCodeTrigger
401authentication_errorauthentication_requiredPAT が無効または期限切れです。
404not_found_errorschedule_not_foundSchedule が存在しないか、呼び出し側から参照できません。

Notes

  • statusactive または paused のみです。アーカイブ状態は archived_at で表現されます。
  • Schedule オブジェクトは、Vault、Memory Store、生の環境変数などのランタイム非公開フィールドを公開しません。

スケジュールを更新する

スケジュール実行を一覧表示する