PUT
/
publishers
/
{publisherId}
/
nodes
/
{nodeId}
/
versions
/
{versionId}
Update changelog and deprecation status of a node version
curl --request PUT \
  --url https://api.comfy.org/publishers/{publisherId}/nodes/{nodeId}/versions/{versionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "changelog": "<string>",
  "deprecated": true
}'
{
  "changelog": "<string>",
  "comfy_node_extract_status": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "dependencies": [
    "<string>"
  ],
  "deprecated": true,
  "downloadUrl": "<string>",
  "id": "<string>",
  "node_id": "<string>",
  "status": "NodeVersionStatusActive",
  "status_reason": "<string>",
  "supported_accelerators": [
    "<string>"
  ],
  "supported_comfyui_frontend_version": "<string>",
  "supported_comfyui_version": "<string>",
  "supported_os": [
    "<string>"
  ],
  "version": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

publisherId
string
required
nodeId
string
required
versionId
string
required

Body

application/json

Response

200
application/json

Version updated successfully

The response is of type object.