curl --request POST \
--url https://api.kaizenautomation.com/workflows/schedules/create \
--header 'Content-Type: application/json' \
--data '{
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"loginId": "<string>",
"workflowId": "<string>"
}'
{
"id": "<string>",
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"logins": [
{
"id": "<string>",
"name": "<string>"
}
]
}
Create a schedule for a workflow
curl --request POST \
--url https://api.kaizenautomation.com/workflows/schedules/create \
--header 'Content-Type: application/json' \
--data '{
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"loginId": "<string>",
"workflowId": "<string>"
}'
{
"id": "<string>",
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"logins": [
{
"id": "<string>",
"name": "<string>"
}
]
}
Create workflow schedule parameters
The body is of type object
.
Schedule created successfully
The response is of type object
.