---
title: "Update a specific comfy-node"
method: PUT
path: "/nodes/{nodeId}/versions/{version}/comfy-nodes/{comfyNodeName}"
tags: ["Registry"]
---

# Update a specific comfy-node

`PUT /nodes/{nodeId}/versions/{version}/comfy-nodes/{comfyNodeName}`

## Path parameters

- `nodeId` string, required
- `version` string, required
- `comfyNodeName` string, required

## Request body

- ComfyNodeUpdateRequest
  - `category` string — UI category where the node is listed, used for grouping nodes.
  - `deprecated` boolean — Indicates if the node is deprecated. Deprecated nodes are hidden in the UI.
  - `description` string — Brief description of the node's functionality or purpose.
  - `experimental` boolean — Indicates if the node is experimental, subject to changes or removal.
  - `function` string — Name of the entry-point function to execute the node.
  - `input_types` string — Defines input parameters
  - `output_is_list` boolean[] — Boolean values indicating if each output is a list.
  - `policy` 'ComfyNodePolicyActive' | 'ComfyNodePolicyBanned' | 'ComfyNodePolicyLocalOnly'
  - `return_names` string — Names of the outputs for clarity in workflows.
  - `return_types` string — Specifies the types of outputs produced by the node.

## Response `200`

Comfy Node updated successfully

- ComfyNode
  - `category` string — UI category where the node is listed, used for grouping nodes.
  - `comfy_node_name` string — Unique identifier for the node
  - `deprecated` boolean — Indicates if the node is deprecated. Deprecated nodes are hidden in the UI.
  - `description` string — Brief description of the node's functionality or purpose.
  - `experimental` boolean — Indicates if the node is experimental, subject to changes or removal.
  - `function` string — Name of the entry-point function to execute the node.
  - `input_types` string — Defines input parameters
  - `output_is_list` boolean[] — Boolean values indicating if each output is a list.
  - `policy` 'ComfyNodePolicyActive' | 'ComfyNodePolicyBanned' | 'ComfyNodePolicyLocalOnly'
  - `return_names` string — Names of the outputs for clarity in workflows.
  - `return_types` string — Specifies the types of outputs produced by the node.

## Other responses

- `400` — Bad request, invalid input data
- `401` — Unauthorized
- `403` — Forbidden
- `404` — ComfyNode not found
- `500` — Internal server error

---

[API](https://skmtc.dev/ac/apis/comfy-api.md) · [All operations](https://skmtc.dev/ac/apis/comfy-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ac/comfy-api/revisions/c1893dffe250/schema)
