Kaizen

Kaizen Schedule Todos

Schedule todos for users with flexible scheduling options

The Kaizen Schedule Todos block schedules todos for users with various scheduling options. It's designed to work seamlessly with the Kaizen Todos block for workflow automation.

Block Type

kaizen_schedule_todos

Input Fields

Todo Selection

FieldOptionsDescription
todoInputModereference, manualHow to specify which todos to schedule
todoIdsReferencestringRequired when mode is reference. Block output reference like <block_id.todoIds>

When using todoInputMode: reference, you MUST set todoIdsReference using the <block_id.todoIds> syntax.

User Selection

FieldOptionsDescription
userSelectionModeworkflow_owner, workspace_members, specific_users, input_referenceWhich users to apply the schedule to

Schedule Type

FieldOptionsDescription
scheduleTypetoday, tomorrow, specified_date, relative_days, recurring, custom_rruleHow to determine the schedule date

Time Options

FieldDescription
specifiedDateISO date (YYYY-MM-DD) for specified_date type
relativeDaysDays from execution for relative_days type
startTimeStart time (HH:mm format)

Options

FieldDefaultDescription
skipErrorstrueContinue processing if individual operations fail

Outputs

OutputTypeDescription
successbooleanWhether the operation succeeded
messagestringResult message
summaryobjectStatistics

Common Use Cases

Schedule for Today

inputs:
  todoInputMode: reference
  todoIdsReference: "<fetch_todos.todoIds>"
  scheduleType: today
  userSelectionMode: workflow_owner
  skipErrors: true

Schedule for Tomorrow at 9 AM

inputs:
  todoInputMode: reference
  todoIdsReference: "<fetch_todos.todoIds>"
  scheduleType: tomorrow
  startTime: "09:00"
  userSelectionMode: workflow_owner

Complete Workflow Example

# 1. Fetch todos
- type: kaizen_todos
  name: Fetch Random Todos
  inputs:
    collectionFilter: library
    completionStatus: NOT_COMPLETED
    sortOrder: random
    limit: 3

# 2. Schedule them
- type: kaizen_schedule_todos
  name: Schedule for Today
  inputs:
    todoInputMode: reference
    todoIdsReference: "<fetch_todos.todoIds>"
    scheduleType: today
    userSelectionMode: workflow_owner
    skipErrors: true
On this page

On this page

Start building today
Trusted by over 60,000 builders.
Build Agentic workflows visually on a drag-and-drop canvas or with natural language.
Get started