curl --request POST \
--url 'https://zeus-api.agentspro.cn/node/bind?user_id=user_123' \
--header 'Content-Type: application/json' \
--data '{
"session_id": "sess_456",
"node_id": "node_abc"
}'
{
"success": true,
"message": "Session bound to Chrome Extension",
"binding": {
"session_id": "sess_456",
"user_id": "user_123",
"node_id": "node_abc"
}
}
Node API
绑定节点到会话
将节点绑定到会话
POST
/
node
/
bind
curl --request POST \
--url 'https://zeus-api.agentspro.cn/node/bind?user_id=user_123' \
--header 'Content-Type: application/json' \
--data '{
"session_id": "sess_456",
"node_id": "node_abc"
}'
{
"success": true,
"message": "Session bound to Chrome Extension",
"binding": {
"session_id": "sess_456",
"user_id": "user_123",
"node_id": "node_abc"
}
}
将指定节点绑定到会话。绑定后,该会话的所有工具调用将路由到此节点。
用户 ID
会话 ID
节点 ID
操作是否成功
操作结果消息
curl --request POST \
--url 'https://zeus-api.agentspro.cn/node/bind?user_id=user_123' \
--header 'Content-Type: application/json' \
--data '{
"session_id": "sess_456",
"node_id": "node_abc"
}'
{
"success": true,
"message": "Session bound to Chrome Extension",
"binding": {
"session_id": "sess_456",
"user_id": "user_123",
"node_id": "node_abc"
}
}
⌘I