start_mission
Launch a structured multi-step mission on APIClaw's runtime and receive a missionId to track progress. Use for tasks requiring multiple API calls instead of one.
Instructions
Start a mission — a structured, observable orchestration that runs on APIClaw's runtime. Use this when the user wants to spin up a multi-step task rather than a single API call. Returns a missionId you can poll with mission_status. Legacy templates run through the hand-coded path; data-driven templates run through the v2 composition runner when template_version is pinned.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | Template-specific parameters (see list_mission_templates for the schema). | |
| template | Yes | Template slug — call list_mission_templates to see what is available. | |
| idempotency_key | Yes | Required caller-owned mission operation key. If the outcome is ambiguous, do not submit again; retain this key and request ID for reconciliation. | |
| template_version | No | Optional pinned version for data-driven (v2) templates. Omit to use latest enabled. |