jamjet_list_executions
List workflow executions in JamJet with optional status filtering and pagination. Use to find paused executions awaiting approval via jamjet_approve or monitor running workflows. Returns newest executions first.
Instructions
List workflow executions with optional status filtering and pagination. Read-only, no side effects. Use this to find executions that need attention — for example, filter by 'paused' to find executions awaiting approval via jamjet_approve, or filter by 'running' to monitor active workflows. Returns a JSON object with an 'executions' array, where each entry has the same fields as jamjet_get_execution. Results are ordered by creation time (newest first). Supports offset-based pagination via limit and offset parameters. All parameters are optional — calling with no arguments returns the 50 most recent executions across all statuses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of executions to return. Defaults to 50. Use with offset for pagination through large result sets. | |
| offset | No | Number of executions to skip before returning results. Defaults to 0. Combine with limit for pagination (e.g., offset=50, limit=50 for page 2). | |
| status | No | Filter to a specific status. Allowed values: 'running', 'paused', 'completed', 'failed'. Omit to return all statuses. | |
| tenant_id | No | Tenant partition to query. Defaults to 'default'. Only executions in this tenant are returned. |