Skip to main content
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"
  }
}
Binds a specified node to a session. Once bound, all tool calls for that session will be routed to this node.
user_id
string
required
User ID
session_id
string
required
Session ID
node_id
string
required
Node ID
success
boolean
Whether the operation was successful
message
string
Operation result message
binding
object
Binding details
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"
  }
}