update_node
Update a connected node's settings by merging specified fields into its record. Pause, rename, or adjust priority using nodePaused, nodeName, or priority.
Instructions
Update a connected node's settings (POST /api/v2/update-node). node_updates is merged into the node record — e.g. { nodePaused: true } to pause a node, { nodeName: 'basement' } to rename it, or { priority: 1 } to change its task priority. Read the current record with list_nodes(detailed) first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| node_id | Yes | Node ID, from list_nodes | |
| node_updates | Yes | Object of node fields to change, e.g. { nodePaused: true } |