Skip to main content
POST
/
workflows
/
parameters
/
update
Update workflow parameters
curl --request POST \
  --url https://api.kaizenautomation.com/workflows/parameters/update \
  --header 'Content-Type: application/json' \
  --data '{
  "workflowId": "<string>",
  "schema": {},
  "defaultValues": {}
}'
{
  "workflowId": "<string>",
  "schema": {},
  "defaultValues": {}
}

Body

application/json
workflowId
string
required

ID of the workflow to update parameters for

schema
object

JSON Schema defining the parameters for this workflow

defaultValues
object

Default parameters for this workflow

Response

Workflow parameters updated successfully

workflowId
string
required

ID of the workflow

defaultValues
object | null
required

Default parameters for this workflow, or null if no parameters are configured

schema
object | null

JSON Schema defining the parameters for this workflow, or null if no parameters are configured

I