jamjet_get_execution
Retrieve full details of a single workflow execution by ID. Use this to check current status, inspect state, or confirm completion. Returns execution_id, workflow_id, status, input, state, and timestamps.
Instructions
Retrieve the full details of a single workflow execution. Read-only, no side effects. Use this to check an execution's current status, inspect its state, or confirm completion after running jamjet_run_workflow. Returns a JSON object with: execution_id, workflow_id, workflow_version, status (one of: running, paused, completed, failed, cancelled), initial_input, current_state, started_at, updated_at, and completed_at (null if still running). Fails with 'execution not found' if the ID does not exist in the specified tenant. For the full event history, use jamjet_get_events instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| execution_id | Yes | Execution ID returned by jamjet_run_workflow. Accepts either 'exec_<uuid>' or bare UUID format. | |
| tenant_id | No | Tenant partition to query. Defaults to 'default'. Must match the tenant used when the execution was created. |