Authentication
Browser Sessions
Environments
Workflows
- POSTCreate a new workflow
- POSTExecute a workflow
- POSTExecute a workflow synchronously
- POSTList workflows
- POSTGet workflow
- POSTUpdate workflow blocks
- POSTSet workflow parameter schema
- POSTCreate workflow schedule
- POSTList workflow schedules
- POSTDelete workflow schedule
- POSTUpdate workflow schedule
- POSTDuplicate workflow
- POSTDelete workflow
Workflow Parameters
Instructor
API Reference
Workflow Parameters
Create workflow parameters
Creates parameter configuration for a workflow
POST
/
workflows
/
parameters
/
create
Create workflow parameters
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/workflows/parameters/create \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>",
"schema": {},
"defaultValues": {}
}'
Copy
Ask AI
{
"workflowId": "<string>",
"schema": {},
"defaultValues": {}
}
Body
application/json
Response
200
application/json
Workflow parameters created successfully
The response is of type object
.
Create workflow parameters
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/workflows/parameters/create \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>",
"schema": {},
"defaultValues": {}
}'
Copy
Ask AI
{
"workflowId": "<string>",
"schema": {},
"defaultValues": {}
}
Assistant
Responses are generated using AI and may contain mistakes.