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

trigger_schedule

Run a schedule once, immediately, without waiting for its next slot.

This spends a real agent or workflow run. The dispatch is asynchronous — poll get_schedule for the run’s status, then read the result with get_assistant_run (agent target, via the run’s thread_id) or get_run_status (workflow target, via agent_run_id).

Parameters#

NameTypeRequiredDefaultDescription
schedule_idstringyesThe schedule id

Returns#

json
{
  "triggered": true,
  "schedule_id": "sched_abc123",
  "run_id": "sched_run_xyz",
  "status": "pending",
  "note": "Dispatched asynchronously. Poll get_schedule: once this run_id shows a thread_id ..."
}

run_id is the run just dispatched (created pending, then picked up by the worker) — not the previous one.

Errors#

error_typeWhen
auth_errorMissing / invalid API key
feature_not_availableYour plan does not include schedules
not_foundUnknown schedule id, or one outside your organization