Body
application/json
List workflow schedules parameters
ID of the workflow to set schedule for
Response
Schedules retrieved successfully
List of workflow schedules
curl --request POST \
--url https://api.kaizenautomation.com/workflows/schedules/list \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>"
}'
{
"schedules": [
{
"id": "<string>",
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"logins": [
{
"id": "<string>",
"name": "<string>"
}
]
}
]
}
List schedules for a workflow
curl --request POST \
--url https://api.kaizenautomation.com/workflows/schedules/list \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>"
}'
{
"schedules": [
{
"id": "<string>",
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"logins": [
{
"id": "<string>",
"name": "<string>"
}
]
}
]
}
List workflow schedules parameters
ID of the workflow to set schedule for
Schedules retrieved successfully
List of workflow schedules
Show child attributes