> ## 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.

# Unbind Node

> Unbind a node from a session

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

<ResponseField name="success" type="boolean">Whether the operation was successful</ResponseField>
<ResponseField name="message" type="string">Operation result message</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>
