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

Body

application/json
workflowId
string
required

ID of the workflow to get parameters for

Response

Workflow parameters retrieved 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