get_workflow_execution_history
Retrieve the complete raw execution history of a Temporal workflow, including all activity executions, signals, and timers. Use for detailed event inspection, but be aware the payload can be very large.
Instructions
Get the complete RAW execution history of a Temporal workflow. Returns all events from the workflow history including activity executions, signals, timers, etc. WARNING: This can be very large. Use get_workflow_step_results instead for a compact summary with resultUri.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes | The run ID of the specific workflow execution. This is a UUID that uniquely identifies a workflow run. | |
| region | No | Region where the workflow is running. Options: us (US West), eu (EU Central), au (Australia), in (India). Defaults to "us" if not specified. | |
| workflowId | Yes | The workflow ID (e.g., "my-workflow-123") |