API 參考
查詢 Agent 動作列表
查詢 Agent 動作列表介面說明。查閱 StableOps 通用 API 的鑑權範圍、請求路徑、參數欄位、回應結構、環境限制和錯誤處理要求,並結合冪等、許可權與狀態流轉規則,將該介面安全接入收款業務與自動化流程。
GET
/v1/agent/actionsAuthorization
bearerAuth AuthorizationBearer <token>
Paste your API key from the dashboard.
In: header
Query Parameters
offset?number
Skip this many items before returning results (default 0).
limit?number
Page size (1-200, default 50).
session_id?string
Filter by agent session id.
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/agent/actions"{
"items": [
{
"id": "string",
"agent_session_id": "string",
"tool": "string",
"input": "string",
"status": "string",
"approver_id": "string",
"decided_at": "string",
"executed_at": "string",
"result": "string",
"error_message": "string",
"created_at": "string"
}
],
"has_more": true,
"total": 0
}{
"statusCode": -9007199254740991,
"message": "string",
"error": "string"
}這篇文件怎麼樣?
最後更新