jamjet_get_events
Retrieve the complete event log for a workflow execution to debug behavior, inspect node order, or review approval decisions. Returns ordered events from the immutable audit trail.
Instructions
Retrieve the full, ordered event log for a workflow execution. Read-only, no side effects. Use this to debug execution behavior, understand which nodes ran and in what order, or inspect approval decisions. Returns a JSON object with an 'events' array. Each event has: execution_id, sequence (monotonic counter), timestamp, and kind (one of: WorkflowStarted, NodeScheduled, NodeStarted, NodeCompleted, NodeFailed, ApprovalRequested, ApprovalReceived, WorkflowCompleted, WorkflowCancelled, WorkflowFailed). Events are returned in sequence order (oldest first) and represent the complete, immutable audit trail. For a high-level status summary, use jamjet_get_execution instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| execution_id | Yes | Execution ID to retrieve events for. Accepts '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. |