Skip to main content
Tool run_playbook_status · Behavior Read-only
Poll a playbook run started by run_playbook, using the job_id it returned. While status is running or pending, poll again; when succeeded, result holds the check results.

Input parameters

string
required
The job_id returned by the executor tool.

Response

string
Job identifier. Pass it to the matching *_status tool to poll.
'pending' | 'running' | 'succeeded' | 'failed' | 'canceled'
succeeded means result is populated; running/pending means poll again; failed/canceled are terminal.
object | null
Typed result when status is succeeded; null until then.
string
The exact tool to call to poll this job. Call it yourself with job_id; do not ask the user to poll.
number | null
While status is pending/running, wait this many seconds, then call status_tool with job_id. null once the job is terminal.
string
Plain-language next step. Follow it before responding.