Skip to main content

When to use

  • Check the status of recent workflow runs at a glance
  • Find failed executions to investigate further
  • Monitor how often a workflow is triggered
  • Get an execution ID to pass to get-execution for node-level debugging

Prerequisites

  • codika CLI installed and authenticated
  • A deployed process instance (devProcessInstanceId or prodProcessInstanceId in project.json)
  • API key with executions:read scope

Command

Arguments

Options

Behavior

  1. Fetches recent executions from the platform API
  2. Returns lightweight summaries (no full result data — use get execution for that)
  3. Sorted by creation time, newest first

Dev vs Prod executions

After deploying and publishing, project.json contains both instance IDs:
Use devProcessInstanceId to list dev executions and prodProcessInstanceId to list prod executions.

Examples

Output

Each row shows the execution ID (truncated), workflow ID, status with icon, duration, and creation timestamp. Failed executions show the error message and failed node name on the next line. Pass any execution ID to codika get execution <id> for full node-level details. Note: Zero executions is not an error — the CLI prints “No executions found.” and exits with code 0.

Error reference

Exit codes