Authentication
Browser Sessions
Environments
Workflows
Instructor
API Reference
Update workflow schedule
Update a schedule for a workflow
POST
/
workflows
/
schedules
/
update
Copy
Ask AI
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>"
}'
Copy
Ask AI
{
"id": "<string>",
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"workflow": {
"id": "<string>",
"name": "<string>"
}
}
Body
application/json
Update workflow schedule parameters
The body is of type object
.
Response
200
application/json
Schedule updated successfully
The response is of type object
.
Copy
Ask AI
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>"
}'
Copy
Ask AI
{
"id": "<string>",
"cronExpression": "<string>",
"timezone": "<string>",
"params": {},
"enabled": true,
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"workflow": {
"id": "<string>",
"name": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.