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