Skip to main content
PATCH
/
v1
/
workflows
/
{id}
/
nodes
/
{nodeId}
Update node inputs
curl --request PATCH \
  --url https://app.galaxy.ai/api/v1/workflows/{id}/nodes/{nodeId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "inputs": {}
}'
{
  "nodeId": "<string>",
  "type": "<string>",
  "updated": [
    "<string>"
  ],
  "currentInputs": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Workflow ID

Minimum string length: 1
nodeId
string
required

Node ID to update

Minimum string length: 1

Body

application/json
inputs
object
required

Input values to update. Only specified fields are changed; others keep current values.

Response

Successful response

nodeId
string
required
type
string
required
updated
string[]
required
currentInputs
object
required