メインコンテンツへ移動
本文へ移動
API リファレンス

Task Agent

API リファレンス

公開 API の引数、認証、応答スキーマを確認します。

OpenAPI JSON

定義は製品内 Task Agent API 文書が参照する Backplane 仕様に基づきます。以下は公開 API のグループ別一覧です。展開すると引数、本文、応答状態、構造を確認できます。まずクイックスタート、ストリーミングはイベントを参照してください。

37 件の公開 API を含むスナップショットです。引数、応答、認証は OpenAPI JSON から直接取得し、API 説明は原文のまま表示します。

OpenAPI JSON をダウンロード · 上流の OpenAPI JSON を表示

取得日: 2026-09-17 · 形式: Swagger / OpenAPI 2.0 · ベース URL: https://backend.hast.so/api/public/v1.

ダウンロードには公開 Task Agent API と参照モデルだけを含みます。Swagger 2.0 対応ツールへ取り込めます。上流仕様には他サービスの API も含まれます。

認証

すべてのリクエストに個人 API キーが必要です。 Authorization: Bearer hast_pk_... を使用し、キーはサーバーで保管してください。

JSON
{
  "description": "Personal API key as `Bearer hast_pk_*` for `/api/public/v1`.",
  "in": "header",
  "name": "Authorization",
  "type": "apiKey"
}

Prompt

POST /api/public/v1/promptsSubmit a public Task Agent prompt

Creates a normal conversational Task Agent session when session_id is omitted, or appends a turn to an existing session. request_id is idempotent.

リクエスト形式: application/json; 応答形式: application/json.

引数

request · body · 必須

JSON
{
  "description": "Public prompt request",
  "in": "body",
  "name": "request",
  "required": true,
  "schema": {
    "properties": {
      "dynamic_tools": {
        "items": {
          "additionalProperties": {},
          "type": "object"
        },
        "type": "array"
      },
      "files": {
        "items": {
          "type": "string"
        },
        "type": "array"
      },
      "model": {
        "example": "hast/auto",
        "type": "string"
      },
      "prompt": {
        "example": "Summarize the release notes.",
        "type": "string"
      },
      "reasoning_effort": {
        "example": "medium",
        "type": "string"
      },
      "request_id": {
        "example": "client-turn-1",
        "type": "string"
      },
      "secret_bindings": {
        "items": {
          "additionalProperties": {},
          "type": "object"
        },
        "type": "array"
      },
      "session_id": {
        "example": "sess_abc123",
        "type": "string"
      },
      "skill_ids": {
        "items": {
          "type": "string"
        },
        "type": "array"
      },
      "system_prompt": {
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

202 Accepted

JSON
{
  "properties": {
    "request_id": {
      "example": "client-turn-1",
      "type": "string"
    },
    "session_id": {
      "example": "sess_abc123",
      "type": "string"
    },
    "status": {
      "example": "dispatch_pending",
      "type": "string"
    }
  },
  "type": "object"
}

401 Unauthorized

JSON
{
  "properties": {
    "code": {
      "description": "Code is the business status code (0 = success; see pkg/utils/errors.go).",
      "example": 0,
      "type": "integer"
    },
    "message": {
      "description": "Message is a human-readable status or error description.",
      "example": "ok",
      "type": "string"
    }
  },
  "type": "object"
}

409 Conflict

JSON
{
  "properties": {
    "code": {
      "description": "Code is the business status code (0 = success; see pkg/utils/errors.go).",
      "example": 0,
      "type": "integer"
    },
    "message": {
      "description": "Message is a human-readable status or error description.",
      "example": "ok",
      "type": "string"
    }
  },
  "type": "object"
}

413 Request Entity Too Large

JSON
{
  "properties": {
    "code": {
      "description": "Code is the business status code (0 = success; see pkg/utils/errors.go).",
      "example": 0,
      "type": "integer"
    },
    "message": {
      "description": "Message is a human-readable status or error description.",
      "example": "ok",
      "type": "string"
    }
  },
  "type": "object"
}

セッションとイベント

GET /api/public/v1/sessionsList public Task Agent sessions

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

limit · query · 任意

JSON
{
  "description": "Page size (1-100, default 50)",
  "in": "query",
  "name": "limit",
  "type": "integer"
}

cursor · query · 任意

JSON
{
  "description": "Opaque cursor returned by the previous page",
  "in": "query",
  "name": "cursor",
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "has_more": {
      "type": "boolean"
    },
    "next_cursor": {
      "type": "string"
    },
    "sessions": {
      "items": {
        "properties": {
          "event_cursor": {
            "type": "integer"
          },
          "mode": {
            "type": "string"
          },
          "runtime_provider": {
            "type": "string"
          },
          "session_id": {
            "example": "sess_abc123",
            "type": "string"
          },
          "status": {
            "example": "running",
            "type": "string"
          },
          "task_origin": {
            "example": "session",
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    }
  },
  "type": "object"
}
GET /api/public/v1/sessions/{id}Read a public Task Agent session

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Session ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "session": {
      "properties": {
        "event_cursor": {
          "type": "integer"
        },
        "mode": {
          "type": "string"
        },
        "runtime_provider": {
          "type": "string"
        },
        "session_id": {
          "example": "sess_abc123",
          "type": "string"
        },
        "status": {
          "example": "running",
          "type": "string"
        },
        "task_origin": {
          "example": "session",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
DELETE /api/public/v1/sessions/{id}Delete a public Task Agent session

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Session ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "task": {
      "properties": {
        "client_id": {
          "example": "client-main-user-123",
          "type": "string"
        },
        "config": {
          "additionalProperties": {},
          "type": "object"
        },
        "created_at": {
          "type": "string"
        },
        "event_cursor": {
          "example": 42,
          "type": "integer"
        },
        "id": {
          "example": "task-agent-123",
          "type": "string"
        },
        "mode": {
          "example": "agent_run",
          "type": "string"
        },
        "profile_id": {
          "example": "user_123",
          "type": "string"
        },
        "prompt": {
          "type": "string"
        },
        "runtime_provider": {
          "example": "cubesandbox",
          "type": "string"
        },
        "sandbox_id": {
          "example": "sandbox-main-user-123",
          "type": "string"
        },
        "sandbox_scope": {
          "example": "main",
          "type": "string"
        },
        "status": {
          "example": "needs_input",
          "type": "string"
        },
        "task_origin": {
          "example": "session",
          "type": "string"
        },
        "title": {
          "example": "Release validation",
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        },
        "workspace_object_prefix": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
POST /api/public/v1/sessions/{id}/cancelCancel a public Task Agent session

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Session ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "task": {
      "properties": {
        "client_id": {
          "example": "client-main-user-123",
          "type": "string"
        },
        "config": {
          "additionalProperties": {},
          "type": "object"
        },
        "created_at": {
          "type": "string"
        },
        "event_cursor": {
          "example": 42,
          "type": "integer"
        },
        "id": {
          "example": "task-agent-123",
          "type": "string"
        },
        "mode": {
          "example": "agent_run",
          "type": "string"
        },
        "profile_id": {
          "example": "user_123",
          "type": "string"
        },
        "prompt": {
          "type": "string"
        },
        "runtime_provider": {
          "example": "cubesandbox",
          "type": "string"
        },
        "sandbox_id": {
          "example": "sandbox-main-user-123",
          "type": "string"
        },
        "sandbox_scope": {
          "example": "main",
          "type": "string"
        },
        "status": {
          "example": "needs_input",
          "type": "string"
        },
        "task_origin": {
          "example": "session",
          "type": "string"
        },
        "title": {
          "example": "Release validation",
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        },
        "workspace_object_prefix": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
GET /api/public/v1/sessions/{id}/eventsList public Task Agent Event v2 events

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Session ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

after · query · 任意

JSON
{
  "description": "Return persisted events after this sequence",
  "in": "query",
  "name": "after",
  "type": "integer"
}

応答

200 OK

JSON
{
  "properties": {
    "events": {
      "items": {
        "discriminator": "type",
        "properties": {
          "created_at": {
            "example": "2026-08-16T12:00:00Z",
            "format": "date-time",
            "type": "string"
          },
          "data": {
            "allOf": [
              {
                "properties": {
                  "attempt": {
                    "minimum": 1,
                    "type": "integer"
                  },
                  "attempts": {
                    "minimum": 1,
                    "type": "integer"
                  },
                  "channel": {
                    "enum": [
                      "stdout",
                      "stderr",
                      "progress"
                    ],
                    "type": "string"
                  },
                  "code": {
                    "type": "string"
                  },
                  "context_window": {
                    "minimum": 0,
                    "type": "integer"
                  },
                  "cost": {},
                  "delta": {
                    "type": "string"
                  },
                  "duration_ms": {
                    "minimum": 0,
                    "type": "integer"
                  },
                  "error": {
                    "type": "string"
                  },
                  "exit_code": {
                    "type": "integer"
                  },
                  "files": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "final_message_id": {
                    "type": "string"
                  },
                  "finish_reason": {
                    "type": "string"
                  },
                  "input": {},
                  "is_error": {
                    "type": "boolean"
                  },
                  "kind": {
                    "type": "string"
                  },
                  "last": {
                    "properties": {
                      "cache_read_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "cache_write_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "input_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "output_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "reasoning_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "total_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "cache_read_tokens",
                      "cache_write_tokens",
                      "input_tokens",
                      "output_tokens",
                      "reasoning_tokens",
                      "total_tokens"
                    ],
                    "type": "object"
                  },
                  "message": {
                    "type": "string"
                  },
                  "message_id": {
                    "type": "string"
                  },
                  "model": {
                    "type": "string"
                  },
                  "model_source": {
                    "type": "string"
                  },
                  "modified_at": {
                    "format": "date-time",
                    "type": "string"
                  },
                  "name": {
                    "type": "string"
                  },
                  "operation": {
                    "enum": [
                      "update",
                      "delete"
                    ],
                    "type": "string"
                  },
                  "options": {
                    "items": {},
                    "type": "array"
                  },
                  "output": {},
                  "parent_tool_call_id": {
                    "type": "string"
                  },
                  "path": {
                    "type": "string"
                  },
                  "plan_id": {
                    "type": "string"
                  },
                  "prompt": {
                    "type": "string"
                  },
                  "reason": {
                    "type": "string"
                  },
                  "reasoning_id": {
                    "type": "string"
                  },
                  "request_id": {
                    "type": "string"
                  },
                  "retryable": {
                    "type": "boolean"
                  },
                  "role": {
                    "enum": [
                      "user",
                      "assistant",
                      "system"
                    ],
                    "type": "string"
                  },
                  "scope": {
                    "type": "string"
                  },
                  "size_bytes": {
                    "minimum": 0,
                    "type": "integer"
                  },
                  "status": {
                    "enum": [
                      "starting",
                      "ready",
                      "failed",
                      "released",
                      "succeeded",
                      "interrupted"
                    ],
                    "type": "string"
                  },
                  "steps": {
                    "items": {
                      "properties": {
                        "status": {
                          "enum": [
                            "pending",
                            "in_progress",
                            "completed"
                          ],
                          "example": "in_progress",
                          "type": "string"
                        },
                        "step": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "status",
                        "step"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "text": {
                    "type": "string"
                  },
                  "tokens_after": {
                    "minimum": 0,
                    "type": "integer"
                  },
                  "tokens_before": {
                    "minimum": 0,
                    "type": "integer"
                  },
                  "tool_call_id": {
                    "type": "string"
                  },
                  "total": {
                    "properties": {
                      "cache_read_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "cache_write_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "input_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "output_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "reasoning_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      },
                      "total_tokens": {
                        "minimum": 0,
                        "type": "integer"
                      }
                    },
                    "required": [
                      "cache_read_tokens",
                      "cache_write_tokens",
                      "input_tokens",
                      "output_tokens",
                      "reasoning_tokens",
                      "total_tokens"
                    ],
                    "type": "object"
                  },
                  "turn_type": {
                    "type": "string"
                  }
                },
                "type": "object"
              }
            ],
            "description": "Data is the HAST-owned payload union; Type selects its required shape as\ndefined in docs/reference/task-agent-event-v2.md."
          },
          "engine": {
            "enum": [
              "codex_cli",
              "pi_agent_cli"
            ],
            "example": "codex_cli",
            "type": "string"
          },
          "event_id": {
            "example": "evt_123",
            "type": "string"
          },
          "replayable": {
            "example": true,
            "type": "boolean"
          },
          "run_id": {
            "example": "run_123",
            "type": "string"
          },
          "schema_version": {
            "enum": [
              2
            ],
            "example": 2,
            "type": "integer"
          },
          "sequence": {
            "description": "Sequence is a positive durable order, or null for volatile events.",
            "example": 42,
            "minimum": 1,
            "type": "integer",
            "x-nullable": true
          },
          "session_id": {
            "example": "session_123",
            "type": "string"
          },
          "source": {
            "enum": [
              "runtime",
              "backplane",
              "workspace"
            ],
            "example": "runtime",
            "type": "string"
          },
          "task_id": {
            "example": "task_123",
            "type": "string"
          },
          "type": {
            "enum": [
              "runtime.status",
              "run.queued",
              "run.started",
              "run.retrying",
              "run.completed",
              "run.failed",
              "run.interrupted",
              "message.started",
              "message.delta",
              "message.completed",
              "reasoning.started",
              "reasoning.delta",
              "reasoning.completed",
              "tool.started",
              "tool.updated",
              "tool.completed",
              "plan.updated",
              "plan.completed",
              "usage.updated",
              "file.changed",
              "input.requested",
              "context.compacted",
              "warning",
              "error"
            ],
            "example": "message.completed",
            "type": "string"
          }
        },
        "required": [
          "created_at",
          "data",
          "engine",
          "event_id",
          "replayable",
          "schema_version",
          "sequence",
          "source",
          "task_id",
          "type"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "has_more": {
      "example": true,
      "type": "boolean"
    },
    "next_after": {
      "example": 42,
      "format": "int64",
      "type": "integer",
      "x-nullable": true
    }
  },
  "type": "object"
}
GET /api/public/v1/sessions/{id}/events/streamStream public Task Agent events

Event v2 SSE supports after and Last-Event-ID replay.

リクエスト形式: 本文形式の指定なし; 応答形式: text/event-stream.

引数

id · path · 必須

JSON
{
  "description": "Session ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

after · query · 任意

JSON
{
  "description": "Return persisted events after this sequence",
  "in": "query",
  "name": "after",
  "type": "integer"
}

応答

200 SSE stream

JSON
{
  "type": "string"
}
POST /api/public/v1/sessions/{id}/interruptInterrupt a public Task Agent turn

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Session ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "request_id": {
      "example": "task-agent-turn-1710000000000000000",
      "type": "string"
    },
    "status": {
      "example": "queued",
      "type": "string"
    }
  },
  "type": "object"
}

202 Accepted

JSON
{
  "properties": {
    "request_id": {
      "example": "task-agent-turn-1710000000000000000",
      "type": "string"
    },
    "status": {
      "example": "queued",
      "type": "string"
    }
  },
  "type": "object"
}

スキル

GET /api/public/v1/skillsList public Task Agent skills

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

仕様に引数の定義はありません。

応答

200 OK

JSON
{
  "properties": {
    "skills": {
      "items": {
        "properties": {
          "capability_id": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "directory_name": {
            "example": "e2e-summary",
            "type": "string"
          },
          "display_name": {
            "type": "string"
          },
          "enabled": {
            "type": "boolean"
          },
          "entrypoint_path": {
            "example": "SKILL.md",
            "type": "string"
          },
          "files": {
            "items": {
              "properties": {
                "content": {
                  "type": "string"
                },
                "path": {
                  "example": "SKILL.md",
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": "array"
          },
          "hash": {
            "example": "sha256:abc123",
            "type": "string"
          },
          "skill_id": {
            "example": "e2e-summary",
            "type": "string"
          },
          "source": {
            "example": "user",
            "type": "string"
          },
          "status": {
            "example": "active",
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    }
  },
  "type": "object"
}
POST /api/public/v1/skillsCreate a public Task Agent skill

リクエスト形式: application/json; 応答形式: application/json.

引数

request · body · 必須

JSON
{
  "description": "Skill request",
  "in": "body",
  "name": "request",
  "required": true,
  "schema": {
    "properties": {
      "description": {
        "type": "string"
      },
      "directory_name": {
        "example": "e2e-summary",
        "type": "string"
      },
      "display_name": {
        "example": "E2E Summary",
        "type": "string"
      },
      "enabled": {
        "type": "boolean"
      },
      "entrypoint_path": {
        "example": "SKILL.md",
        "type": "string"
      },
      "expected_checksum_sha256": {
        "type": "string"
      },
      "files": {
        "items": {
          "properties": {
            "content": {
              "type": "string"
            },
            "path": {
              "example": "SKILL.md",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": "array"
      },
      "skill_id": {
        "example": "e2e-summary",
        "type": "string"
      },
      "source_type": {
        "example": "upload",
        "type": "string"
      },
      "url": {
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "skill": {
      "properties": {
        "capability_id": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "directory_name": {
          "example": "e2e-summary",
          "type": "string"
        },
        "display_name": {
          "type": "string"
        },
        "enabled": {
          "type": "boolean"
        },
        "entrypoint_path": {
          "example": "SKILL.md",
          "type": "string"
        },
        "files": {
          "items": {
            "properties": {
              "content": {
                "type": "string"
              },
              "path": {
                "example": "SKILL.md",
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "hash": {
          "example": "sha256:abc123",
          "type": "string"
        },
        "skill_id": {
          "example": "e2e-summary",
          "type": "string"
        },
        "source": {
          "example": "user",
          "type": "string"
        },
        "status": {
          "example": "active",
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
GET /api/public/v1/skills/{skillID}Read, update, or delete a public Task Agent skill

リクエスト形式: application/json; 応答形式: application/json.

引数

skillID · path · 必須

JSON
{
  "description": "Skill ID",
  "in": "path",
  "name": "skillID",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Skill request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "description": {
        "type": "string"
      },
      "directory_name": {
        "example": "e2e-summary",
        "type": "string"
      },
      "display_name": {
        "example": "E2E Summary",
        "type": "string"
      },
      "enabled": {
        "type": "boolean"
      },
      "entrypoint_path": {
        "example": "SKILL.md",
        "type": "string"
      },
      "expected_checksum_sha256": {
        "type": "string"
      },
      "files": {
        "items": {
          "properties": {
            "content": {
              "type": "string"
            },
            "path": {
              "example": "SKILL.md",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": "array"
      },
      "skill_id": {
        "example": "e2e-summary",
        "type": "string"
      },
      "source_type": {
        "example": "upload",
        "type": "string"
      },
      "url": {
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "skill": {
      "properties": {
        "capability_id": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "directory_name": {
          "example": "e2e-summary",
          "type": "string"
        },
        "display_name": {
          "type": "string"
        },
        "enabled": {
          "type": "boolean"
        },
        "entrypoint_path": {
          "example": "SKILL.md",
          "type": "string"
        },
        "files": {
          "items": {
            "properties": {
              "content": {
                "type": "string"
              },
              "path": {
                "example": "SKILL.md",
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "hash": {
          "example": "sha256:abc123",
          "type": "string"
        },
        "skill_id": {
          "example": "e2e-summary",
          "type": "string"
        },
        "source": {
          "example": "user",
          "type": "string"
        },
        "status": {
          "example": "active",
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
PUT /api/public/v1/skills/{skillID}Read, update, or delete a public Task Agent skill

リクエスト形式: application/json; 応答形式: application/json.

引数

skillID · path · 必須

JSON
{
  "description": "Skill ID",
  "in": "path",
  "name": "skillID",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Skill request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "description": {
        "type": "string"
      },
      "directory_name": {
        "example": "e2e-summary",
        "type": "string"
      },
      "display_name": {
        "example": "E2E Summary",
        "type": "string"
      },
      "enabled": {
        "type": "boolean"
      },
      "entrypoint_path": {
        "example": "SKILL.md",
        "type": "string"
      },
      "expected_checksum_sha256": {
        "type": "string"
      },
      "files": {
        "items": {
          "properties": {
            "content": {
              "type": "string"
            },
            "path": {
              "example": "SKILL.md",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": "array"
      },
      "skill_id": {
        "example": "e2e-summary",
        "type": "string"
      },
      "source_type": {
        "example": "upload",
        "type": "string"
      },
      "url": {
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "skill": {
      "properties": {
        "capability_id": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "directory_name": {
          "example": "e2e-summary",
          "type": "string"
        },
        "display_name": {
          "type": "string"
        },
        "enabled": {
          "type": "boolean"
        },
        "entrypoint_path": {
          "example": "SKILL.md",
          "type": "string"
        },
        "files": {
          "items": {
            "properties": {
              "content": {
                "type": "string"
              },
              "path": {
                "example": "SKILL.md",
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "hash": {
          "example": "sha256:abc123",
          "type": "string"
        },
        "skill_id": {
          "example": "e2e-summary",
          "type": "string"
        },
        "source": {
          "example": "user",
          "type": "string"
        },
        "status": {
          "example": "active",
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
PATCH /api/public/v1/skills/{skillID}Read, update, or delete a public Task Agent skill

リクエスト形式: application/json; 応答形式: application/json.

引数

skillID · path · 必須

JSON
{
  "description": "Skill ID",
  "in": "path",
  "name": "skillID",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Skill request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "description": {
        "type": "string"
      },
      "directory_name": {
        "example": "e2e-summary",
        "type": "string"
      },
      "display_name": {
        "example": "E2E Summary",
        "type": "string"
      },
      "enabled": {
        "type": "boolean"
      },
      "entrypoint_path": {
        "example": "SKILL.md",
        "type": "string"
      },
      "expected_checksum_sha256": {
        "type": "string"
      },
      "files": {
        "items": {
          "properties": {
            "content": {
              "type": "string"
            },
            "path": {
              "example": "SKILL.md",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": "array"
      },
      "skill_id": {
        "example": "e2e-summary",
        "type": "string"
      },
      "source_type": {
        "example": "upload",
        "type": "string"
      },
      "url": {
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "skill": {
      "properties": {
        "capability_id": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "directory_name": {
          "example": "e2e-summary",
          "type": "string"
        },
        "display_name": {
          "type": "string"
        },
        "enabled": {
          "type": "boolean"
        },
        "entrypoint_path": {
          "example": "SKILL.md",
          "type": "string"
        },
        "files": {
          "items": {
            "properties": {
              "content": {
                "type": "string"
              },
              "path": {
                "example": "SKILL.md",
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "hash": {
          "example": "sha256:abc123",
          "type": "string"
        },
        "skill_id": {
          "example": "e2e-summary",
          "type": "string"
        },
        "source": {
          "example": "user",
          "type": "string"
        },
        "status": {
          "example": "active",
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
DELETE /api/public/v1/skills/{skillID}Read, update, or delete a public Task Agent skill

リクエスト形式: application/json; 応答形式: application/json.

引数

skillID · path · 必須

JSON
{
  "description": "Skill ID",
  "in": "path",
  "name": "skillID",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Skill request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "description": {
        "type": "string"
      },
      "directory_name": {
        "example": "e2e-summary",
        "type": "string"
      },
      "display_name": {
        "example": "E2E Summary",
        "type": "string"
      },
      "enabled": {
        "type": "boolean"
      },
      "entrypoint_path": {
        "example": "SKILL.md",
        "type": "string"
      },
      "expected_checksum_sha256": {
        "type": "string"
      },
      "files": {
        "items": {
          "properties": {
            "content": {
              "type": "string"
            },
            "path": {
              "example": "SKILL.md",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": "array"
      },
      "skill_id": {
        "example": "e2e-summary",
        "type": "string"
      },
      "source_type": {
        "example": "upload",
        "type": "string"
      },
      "url": {
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "skill": {
      "properties": {
        "capability_id": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "directory_name": {
          "example": "e2e-summary",
          "type": "string"
        },
        "display_name": {
          "type": "string"
        },
        "enabled": {
          "type": "boolean"
        },
        "entrypoint_path": {
          "example": "SKILL.md",
          "type": "string"
        },
        "files": {
          "items": {
            "properties": {
              "content": {
                "type": "string"
              },
              "path": {
                "example": "SKILL.md",
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "hash": {
          "example": "sha256:abc123",
          "type": "string"
        },
        "skill_id": {
          "example": "e2e-summary",
          "type": "string"
        },
        "source": {
          "example": "user",
          "type": "string"
        },
        "status": {
          "example": "active",
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}

メモリ

GET /api/public/v1/memoriesList public Task Agent memories

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

仕様に引数の定義はありません。

応答

200 OK

JSON
{
  "properties": {
    "memories": {
      "items": {
        "properties": {
          "content": {
            "type": "string"
          },
          "created_at": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "metadata": {
            "additionalProperties": {},
            "type": "object"
          },
          "name": {
            "type": "string"
          },
          "updated_at": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    }
  },
  "type": "object"
}
POST /api/public/v1/memoriesCreate a public Task Agent memory

リクエスト形式: application/json; 応答形式: application/json.

引数

request · body · 必須

JSON
{
  "description": "Memory request",
  "in": "body",
  "name": "request",
  "required": true,
  "schema": {
    "properties": {
      "content": {
        "example": "Prefer concise validation notes.",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "name": {
        "example": "project-preferences",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "memory": {
      "properties": {
        "content": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "metadata": {
          "additionalProperties": {},
          "type": "object"
        },
        "name": {
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
GET /api/public/v1/memories/{name}Read, update, or delete a public Task Agent memory

リクエスト形式: application/json; 応答形式: application/json.

引数

name · path · 必須

JSON
{
  "description": "Memory name",
  "in": "path",
  "name": "name",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Memory request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "content": {
        "example": "Prefer concise validation notes.",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "name": {
        "example": "project-preferences",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "memory": {
      "properties": {
        "content": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "metadata": {
          "additionalProperties": {},
          "type": "object"
        },
        "name": {
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
PUT /api/public/v1/memories/{name}Read, update, or delete a public Task Agent memory

リクエスト形式: application/json; 応答形式: application/json.

引数

name · path · 必須

JSON
{
  "description": "Memory name",
  "in": "path",
  "name": "name",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Memory request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "content": {
        "example": "Prefer concise validation notes.",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "name": {
        "example": "project-preferences",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "memory": {
      "properties": {
        "content": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "metadata": {
          "additionalProperties": {},
          "type": "object"
        },
        "name": {
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
PATCH /api/public/v1/memories/{name}Read, update, or delete a public Task Agent memory

リクエスト形式: application/json; 応答形式: application/json.

引数

name · path · 必須

JSON
{
  "description": "Memory name",
  "in": "path",
  "name": "name",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Memory request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "content": {
        "example": "Prefer concise validation notes.",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "name": {
        "example": "project-preferences",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "memory": {
      "properties": {
        "content": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "metadata": {
          "additionalProperties": {},
          "type": "object"
        },
        "name": {
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
DELETE /api/public/v1/memories/{name}Read, update, or delete a public Task Agent memory

リクエスト形式: application/json; 応答形式: application/json.

引数

name · path · 必須

JSON
{
  "description": "Memory name",
  "in": "path",
  "name": "name",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Memory request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "content": {
        "example": "Prefer concise validation notes.",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "name": {
        "example": "project-preferences",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "memory": {
      "properties": {
        "content": {
          "type": "string"
        },
        "created_at": {
          "type": "string"
        },
        "id": {
          "type": "string"
        },
        "metadata": {
          "additionalProperties": {},
          "type": "object"
        },
        "name": {
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}

ファイル

GET /api/public/v1/filesList, download, or delete public workspace files

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

session_id · query · 任意

JSON
{
  "description": "Session ID",
  "in": "query",
  "name": "session_id",
  "type": "string"
}

path · query · 任意

JSON
{
  "description": "Workspace directory path",
  "in": "query",
  "name": "path",
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "has_more": {
      "type": "boolean"
    },
    "items": {
      "items": {
        "properties": {
          "file_id": {
            "example": "opaque-file-id",
            "type": "string"
          },
          "id": {
            "example": "opaque-file-id",
            "type": "string"
          },
          "name": {
            "example": "report.csv",
            "type": "string"
          },
          "path": {
            "example": "uploads/upload-id/report.csv",
            "type": "string"
          },
          "relative_path": {
            "example": "uploads/upload-id/report.csv",
            "type": "string"
          },
          "session_id": {
            "type": "string"
          },
          "size_bytes": {
            "example": 1024,
            "type": "integer"
          },
          "type": {
            "example": "file",
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    },
    "next_cursor": {
      "type": "string"
    }
  },
  "type": "object"
}
POST /api/public/v1/filesUpload a public Task Agent file

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

file · formData · 必須

JSON
{
  "description": "File",
  "in": "formData",
  "name": "file",
  "required": true,
  "type": "file"
}

応答

201 Created

JSON
{
  "properties": {
    "file": {
      "properties": {
        "file_id": {
          "example": "opaque-file-id",
          "type": "string"
        },
        "id": {
          "example": "opaque-file-id",
          "type": "string"
        },
        "name": {
          "example": "report.csv",
          "type": "string"
        },
        "path": {
          "example": "uploads/upload-id/report.csv",
          "type": "string"
        },
        "relative_path": {
          "example": "uploads/upload-id/report.csv",
          "type": "string"
        },
        "session_id": {
          "type": "string"
        },
        "size_bytes": {
          "example": 1024,
          "type": "integer"
        },
        "type": {
          "example": "file",
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
GET /api/public/v1/files.zipDownload a public workspace ZIP

リクエスト形式: 本文形式の指定なし; 応答形式: application/zip.

引数

session_id · query · 任意

JSON
{
  "description": "Session ID",
  "in": "query",
  "name": "session_id",
  "type": "string"
}

応答

200 Workspace ZIP

JSON
{
  "type": "file"
}
GET /api/public/v1/files/{relativePath}Download or delete a public workspace file

リクエスト形式: 本文形式の指定なし; 応答形式: application/octet-stream.

引数

relativePath · path · 必須

JSON
{
  "description": "Workspace relative path",
  "in": "path",
  "name": "relativePath",
  "required": true,
  "type": "string"
}

session_id · query · 任意

JSON
{
  "description": "Session ID",
  "in": "query",
  "name": "session_id",
  "type": "string"
}

file_id · query · 必須

JSON
{
  "description": "Opaque file ID",
  "in": "query",
  "name": "file_id",
  "required": true,
  "type": "string"
}

応答

200 Workspace file

JSON
{
  "type": "file"
}
DELETE /api/public/v1/files/{relativePath}Download or delete a public workspace file

リクエスト形式: 本文形式の指定なし; 応答形式: application/octet-stream.

引数

relativePath · path · 必須

JSON
{
  "description": "Workspace relative path",
  "in": "path",
  "name": "relativePath",
  "required": true,
  "type": "string"
}

session_id · query · 任意

JSON
{
  "description": "Session ID",
  "in": "query",
  "name": "session_id",
  "type": "string"
}

file_id · query · 必須

JSON
{
  "description": "Opaque file ID",
  "in": "query",
  "name": "file_id",
  "required": true,
  "type": "string"
}

応答

200 Workspace file

JSON
{
  "type": "file"
}

コネクター

GET /api/public/v1/connectors/accountsList public connector accounts

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

仕様に引数の定義はありません。

応答

200 OK

JSON
{
  "properties": {
    "connector_accounts": {
      "items": {
        "additionalProperties": {},
        "type": "object"
      },
      "type": "array"
    }
  },
  "type": "object"
}
GET /api/public/v1/connectors/accounts/{id}Read, update, or delete a public connector account

リクエスト形式: application/json; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Connector account ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Connector account request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "external_account_ref": {
        "example": "connected-account-id",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "provider": {
        "example": "github",
        "type": "string"
      },
      "status": {
        "example": "connected",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "connector_account": {
      "additionalProperties": {},
      "type": "object"
    }
  },
  "type": "object"
}
PUT /api/public/v1/connectors/accounts/{id}Read, update, or delete a public connector account

リクエスト形式: application/json; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Connector account ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Connector account request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "external_account_ref": {
        "example": "connected-account-id",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "provider": {
        "example": "github",
        "type": "string"
      },
      "status": {
        "example": "connected",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "connector_account": {
      "additionalProperties": {},
      "type": "object"
    }
  },
  "type": "object"
}
PATCH /api/public/v1/connectors/accounts/{id}Read, update, or delete a public connector account

リクエスト形式: application/json; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Connector account ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Connector account request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "external_account_ref": {
        "example": "connected-account-id",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "provider": {
        "example": "github",
        "type": "string"
      },
      "status": {
        "example": "connected",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "connector_account": {
      "additionalProperties": {},
      "type": "object"
    }
  },
  "type": "object"
}
DELETE /api/public/v1/connectors/accounts/{id}Read, update, or delete a public connector account

リクエスト形式: application/json; 応答形式: application/json.

引数

id · path · 必須

JSON
{
  "description": "Connector account ID",
  "in": "path",
  "name": "id",
  "required": true,
  "type": "string"
}

request · body · 任意

JSON
{
  "description": "Connector account request",
  "in": "body",
  "name": "request",
  "schema": {
    "properties": {
      "external_account_ref": {
        "example": "connected-account-id",
        "type": "string"
      },
      "metadata": {
        "additionalProperties": {},
        "type": "object"
      },
      "provider": {
        "example": "github",
        "type": "string"
      },
      "status": {
        "example": "connected",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "connector_account": {
      "additionalProperties": {},
      "type": "object"
    }
  },
  "type": "object"
}
GET /api/public/v1/connectors/catalogList public connector catalog

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

仕様に引数の定義はありません。

応答

200 OK

JSON
{
  "properties": {
    "agent_id": {
      "type": "string"
    },
    "connection_scope": {
      "type": "string"
    },
    "connectors": {
      "items": {
        "properties": {
          "account_label": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "label": {
            "example": "GitHub",
            "type": "string"
          },
          "logo": {
            "type": "string"
          },
          "provider": {
            "example": "github",
            "type": "string"
          },
          "runtime_provider": {
            "example": "composio",
            "type": "string"
          },
          "start_url": {
            "type": "string"
          },
          "status": {
            "example": "connected",
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    },
    "has_more": {
      "type": "boolean"
    },
    "limit": {
      "example": 20,
      "type": "integer"
    },
    "next_cursor": {
      "type": "string"
    },
    "profile_id": {
      "type": "string"
    },
    "search": {
      "example": "github",
      "type": "string"
    }
  },
  "type": "object"
}
GET /api/public/v1/connectors/statusList public connector status

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

仕様に引数の定義はありません。

応答

200 OK

JSON
{
  "properties": {
    "agent_id": {
      "type": "string"
    },
    "connection_scope": {
      "type": "string"
    },
    "connectors": {
      "items": {
        "properties": {
          "account_label": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "label": {
            "example": "GitHub",
            "type": "string"
          },
          "logo": {
            "type": "string"
          },
          "provider": {
            "example": "github",
            "type": "string"
          },
          "runtime_provider": {
            "example": "composio",
            "type": "string"
          },
          "start_url": {
            "type": "string"
          },
          "status": {
            "example": "connected",
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    },
    "has_more": {
      "type": "boolean"
    },
    "limit": {
      "example": 20,
      "type": "integer"
    },
    "next_cursor": {
      "type": "string"
    },
    "profile_id": {
      "type": "string"
    },
    "search": {
      "example": "github",
      "type": "string"
    }
  },
  "type": "object"
}
POST /api/public/v1/connectors/{provider}/oauth/authorizeStart public connector OAuth authorization

リクエスト形式: application/json; 応答形式: application/json.

引数

provider · path · 必須

JSON
{
  "description": "Connector provider",
  "in": "path",
  "name": "provider",
  "required": true,
  "type": "string"
}

応答

200 OK

JSON
{
  "properties": {
    "auth_url": {
      "type": "string"
    },
    "connected_account_id": {
      "type": "string"
    }
  },
  "type": "object"
}

シークレット

GET /api/public/v1/secretsList User Secrets

Lists owned User Secret metadata. Secret values are write-only and are never returned.

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

仕様に引数の定義はありません。

応答

200 OK

JSON
{
  "properties": {
    "secrets": {
      "items": {
        "properties": {
          "created_at": {
            "type": "string"
          },
          "id": {
            "example": "sec_123",
            "type": "string"
          },
          "name": {
            "example": "kubeconfig",
            "type": "string"
          },
          "updated_at": {
            "type": "string"
          }
        },
        "type": "object"
      },
      "type": "array"
    }
  },
  "type": "object"
}
POST /api/public/v1/secretsCreate a User Secret

Creates a write-only User Secret. The response returns metadata only.

リクエスト形式: application/json; 応答形式: application/json.

引数

request · body · 必須

JSON
{
  "description": "Secret request",
  "in": "body",
  "name": "request",
  "required": true,
  "schema": {
    "properties": {
      "name": {
        "example": "kubeconfig",
        "type": "string"
      },
      "value": {
        "example": "write-only",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

201 Created

JSON
{
  "properties": {
    "secret": {
      "properties": {
        "created_at": {
          "type": "string"
        },
        "id": {
          "example": "sec_123",
          "type": "string"
        },
        "name": {
          "example": "kubeconfig",
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}
PATCH /api/public/v1/secrets/{secretID}Update a User Secret value

Replaces the write-only Secret value. The response returns metadata only.

リクエスト形式: application/json; 応答形式: application/json.

引数

secretID · path · 必須

JSON
{
  "description": "Secret ID",
  "in": "path",
  "name": "secretID",
  "required": true,
  "type": "string"
}

request · body · 必須

JSON
{
  "description": "Secret request",
  "in": "body",
  "name": "request",
  "required": true,
  "schema": {
    "properties": {
      "value": {
        "example": "write-only",
        "type": "string"
      }
    },
    "type": "object"
  }
}

応答

200 OK

JSON
{
  "properties": {
    "secret": {
      "properties": {
        "created_at": {
          "type": "string"
        },
        "id": {
          "example": "sec_123",
          "type": "string"
        },
        "name": {
          "example": "kubeconfig",
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        }
      },
      "type": "object"
    }
  },
  "type": "object"
}

404 Not Found

JSON
{
  "properties": {
    "code": {
      "description": "Code is the business status code (0 = success; see pkg/utils/errors.go).",
      "example": 0,
      "type": "integer"
    },
    "message": {
      "description": "Message is a human-readable status or error description.",
      "example": "ok",
      "type": "string"
    }
  },
  "type": "object"
}
DELETE /api/public/v1/secrets/{secretID}Delete a User Secret

リクエスト形式: 本文形式の指定なし; 応答形式: application/json.

引数

secretID · path · 必須

JSON
{
  "description": "Secret ID",
  "in": "path",
  "name": "secretID",
  "required": true,
  "type": "string"
}

応答

204 No Content

404 Not Found

JSON
{
  "properties": {
    "code": {
      "description": "Code is the business status code (0 = success; see pkg/utils/errors.go).",
      "example": 0,
      "type": "integer"
    },
    "message": {
      "description": "Message is a human-readable status or error description.",
      "example": "ok",
      "type": "string"
    }
  },
  "type": "object"
}

409 Conflict

JSON
{
  "properties": {
    "code": {
      "description": "Code is the business status code (0 = success; see pkg/utils/errors.go).",
      "example": 0,
      "type": "integer"
    },
    "message": {
      "description": "Message is a human-readable status or error description.",
      "example": "ok",
      "type": "string"
    }
  },
  "type": "object"
}
Hast についてHast AIP、Hast Agent、Hast GTM と、FDE チームによる導入支援を紹介します。AIP の紹介FDE の導入ワークベンチで Agent を設定し、業務システムを接続します。最初の Agent を作成外部サービスを使わずに、設定・保存・デバッグを試します。Agent の設定と管理役割、モデル、機能を設定し、現在有効な設定を管理します。Skills の管理Agent が使うスキルファイルを作成、インポート、選択します。ナレッジベースの追加URL やファイルを索引化し、Agent が資料を検索できるようにします。業務シークレットの管理認証情報を保存して Agent にバインドし、設定例に実際の値を含めないようにします。業務ツールの接続入力と認証方法を指定して、Agent から既存の HTTP サービスを呼び出します。長期メモリの設定Agent が読めるメモリと、新しいメモリの保存先を指定します。Agent のデバッグ保存した設定、会話の継続、ツールの結果を検証します。インポート・エクスポート・複製設定を再利用し、移行後にリソースと認証情報を再確認します。HTTP 接続サーバーから Agent を呼び出し、会話の継続、応答の取得、停止を行います。MCP 接続Public API Key で外部 Agent クライアントから AIP ツールを利用します。Task Agent の紹介計画から実行、成果物まで、ツール・ファイル・継続的な文脈を使って作業を進めます。最初のタスクを完了依頼を送信し、計画を確認して、最終成果物を検証します。会話の計画・実行・管理計画の調整、実行の停止、会話履歴の管理を行います。ファイルのアップロード・閲覧・取得入力資料を渡し、タスクが作成した成果物を保存します。アプリ接続と機能設定外部アプリを認証し、タスク間で使う背景情報を管理します。定期タスクの作成周期とタイムゾーンを設定し、各実行の結果を確認します。Task Agent のトラブルシューティング権限、接続、タスク状態、ファイルを確認します。API クイックスタートキーを作成し、タスクを送信して実行結果を読み取ります。イベントストリームSSE フレーム、切断後の再開、Event v2 の構造を確認します。API リファレンス公開 API の引数、認証、応答スキーマを確認します。GTM の紹介Web サイトの共通プロジェクトで調査、露出分析、マーケティング原稿を扱います。最初の GTM プロジェクトを作成サイトを入力し、初期化を待って最初の結果を確認します。プロジェクトとサイト資料の管理プロジェクトの切り替え、サイト情報の更新、設定の管理を行います。会社分析とプロジェクト文書製品、競合、マーケティング資料を確認し、コンテンツ作成の背景に使います。SEO とサイト性能モバイルとデスクトップの PageSpeed レポートを確認します。AI によるブランド言及購買者の質問と、モデル回答でのブランド言及を確認します。Google Analytics の接続アカウントを認証し、GA プロパティを選んでトラフィックを確認します。X 原稿の生成と公開投稿を生成し、プレビューを確認して X で公開します。記事の下書きを生成スタイル、言語、読者を指定し、Markdown を確認してコピーします。Growth Agent の利用会話でプロジェクト資料を参照し、対応するバックグラウンド操作を開始します。実行状態とトラブルシューティングキュー、依存関係、結果を確認し、未完了をデータなしと混同しないようにします。プランと使用量現在の Profile の利用権限、使用量、請求を確認します。