> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 解除节点绑定

> 解除会话的节点绑定

<ParamField path="session_id" type="string" required>
  会话 ID
</ParamField>

<ResponseField name="success" type="boolean">操作是否成功</ResponseField>
<ResponseField name="message" type="string">操作结果消息</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://zeus-api.agentspro.cn/node/bind/sess_456'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "message": "Session unbound from node"
  }
  ```
</ResponseExample>
