---
title: "Update a specific node"
method: PUT
path: "/publishers/{publisherId}/nodes/{nodeId}"
tags: ["Nodes"]
---

# Update a specific node

`PUT /publishers/{publisherId}/nodes/{nodeId}`

## Path parameters

- `publisherId` string, required
- `nodeId` string, required

## Request body

- Node
  - `id` string — The unique identifier of the node.
  - `name` string — The display name of the node.
  - `category` string — The category of the node.
  - `description` string
  - `author` string
  - `license` string — The path to the LICENSE file in the node's repository.
  - `icon` string — URL to the node's icon.
  - `repository` string — URL to the node's repository.
  - `tags` string[]
  - `latest_version` NodeVersion
    - `id` string
    - `version` string — The version identifier, following semantic versioning. Must be unique for the node.
    - `createdAt` string, date-time — The date and time the version was created.
    - `changelog` string — Summary of changes made in this version
    - `dependencies` string[] — A list of pip dependencies required by the node.
    - `downloadUrl` string — [Output Only] URL to download this version of the node
    - `deprecated` boolean — Indicates if this version is deprecated.
    - `status` 'NodeVersionStatusActive' | 'NodeVersionStatusDeleted' | 'NodeVersionStatusBanned' | 'NodeVersionStatusPending' | 'NodeVersionStatusFlagged'
    - `status_reason` string — The reason for the status change.
    - `node_id` string — The unique identifier of the node.
  - `rating` number — The average rating of the node.
  - `downloads` integer — The number of downloads of the node.
  - `publisher` Publisher
    - `name` string
    - `id` string — The unique identifier for the publisher. It's akin to a username. Should be lowercase.
    - `description` string
    - `website` string
    - `support` string
    - `source_code_repo` string
    - `logo` string — URL to the publisher's logo.
    - `createdAt` string, date-time — The date and time the publisher was created.
    - `members` PublisherMember[] — A list of members in the publisher.
      - `id` string — The unique identifier for the publisher member.
      - `user` PublisherUser
        - `id` string — The unique id for this user.
        - `email` string — The email address for this user.
        - `name` string — The name for this user.
      - `role` string — The role of the user in the publisher.
    - `status` 'PublisherStatusActive' | 'PublisherStatusBanned'
  - `status` 'NodeStatusActive' | 'NodeStatusDeleted' | 'NodeStatusBanned'
  - `status_detail` string — The status detail of the node.

## Response `200`

Node updated successfully

- Node
  - `id` string — The unique identifier of the node.
  - `name` string — The display name of the node.
  - `category` string — The category of the node.
  - `description` string
  - `author` string
  - `license` string — The path to the LICENSE file in the node's repository.
  - `icon` string — URL to the node's icon.
  - `repository` string — URL to the node's repository.
  - `tags` string[]
  - `latest_version` NodeVersion
    - `id` string
    - `version` string — The version identifier, following semantic versioning. Must be unique for the node.
    - `createdAt` string, date-time — The date and time the version was created.
    - `changelog` string — Summary of changes made in this version
    - `dependencies` string[] — A list of pip dependencies required by the node.
    - `downloadUrl` string — [Output Only] URL to download this version of the node
    - `deprecated` boolean — Indicates if this version is deprecated.
    - `status` 'NodeVersionStatusActive' | 'NodeVersionStatusDeleted' | 'NodeVersionStatusBanned' | 'NodeVersionStatusPending' | 'NodeVersionStatusFlagged'
    - `status_reason` string — The reason for the status change.
    - `node_id` string — The unique identifier of the node.
  - `rating` number — The average rating of the node.
  - `downloads` integer — The number of downloads of the node.
  - `publisher` Publisher
    - `name` string
    - `id` string — The unique identifier for the publisher. It's akin to a username. Should be lowercase.
    - `description` string
    - `website` string
    - `support` string
    - `source_code_repo` string
    - `logo` string — URL to the publisher's logo.
    - `createdAt` string, date-time — The date and time the publisher was created.
    - `members` PublisherMember[] — A list of members in the publisher.
      - `id` string — The unique identifier for the publisher member.
      - `user` PublisherUser
        - `id` string — The unique id for this user.
        - `email` string — The email address for this user.
        - `name` string — The name for this user.
      - `role` string — The role of the user in the publisher.
    - `status` 'PublisherStatusActive' | 'PublisherStatusBanned'
  - `status` 'NodeStatusActive' | 'NodeStatusDeleted' | 'NodeStatusBanned'
  - `status_detail` string — The status detail of the node.

## Other responses

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

---

[API](https://skmtc.net/comfy-org/apis/comfy-api.md) · [All operations](https://skmtc.net/comfy-org/apis/comfy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/comfy-org/comfy-api/versions/fb3c490f87ef/schema)
