Skip to content
AdlyseMCP Docs
Product guideMCP reference
⌘K
Open Adlyse
⌘K
Overview
QuickstartAuthentication
adlyse-insights
adlyse-reports
adlyse-ads
adlyse-workflows
list_workflowsget_workflowrun_workflowget_run_status
adlyse-adminadlyse-all
  1. Overview
  2. adlyse-workflows

list_schedules

The organization’s scheduled runs, each with its cadence in words and its next fire times.

Parameters#

NameTypeRequiredDefaultDescription
target_typestring | nullnoFilter by assistant, workflow or batch_job
statusstring | nullnoFilter by active or paused
limitintegerno50Max schedules to return (capped at 200)

Returns#

json
{
  "schedules": [
    {
      "schedule_id": "sched_abc123",
      "name": "Morning pacing check",
      "cron_expression": "0 7 * * 1-5",
      "timezone": "America/Los_Angeles",
      "human_readable": "Every weekday at 7:00 AM (America/Los_Angeles)",
      "next_runs": ["2026-08-19T07:00:00-07:00"],
      "status": "active",
      "target_type": "assistant",
      "target_name": "Pacing analyst"
    }
  ]
}

Errors#

error_typeWhen
auth_errorMissing / invalid API key