ktm executions list

List, filter, and search test executions for a product using the ktm CLI, with options for status, date range, and creator.

List recent test executions for a product

Usage

ktm executions list [flags]

Examples

# List recent executions for a product
ktm executions list --product my-operator~my-product

# Filter by status
ktm executions list --product my-operator~my-product --status failed

# Search by name
ktm executions list --product my-operator~my-product --search "regression"

# Filter by date range
ktm executions list --product my-operator~my-product --from-date 2025-01-01T00:00:00Z

# Table format
ktm executions list --product my-operator~my-product -o table

Flags

FlagTypeDefaultDescription
--creatorstringFilter by creator username
--from-datestringOnly include executions after this date (ISO 8601, e.g. 2025-01-01T00:00:00Z)
--operatorstringOperator slug (from 'operators list')
--orderingstringSort field: created or -created (default: -created)
--pagestringPage number to fetch (default: 1)
--page-sizestringNumber of executions per page (default: 20, max: 4000)
--productstringProduct slug (format: operator~product, from 'products list')
--searchstringFree-text search across execution name and tags
--statusstringFilter by execution status: success, failed, ongoing, pending, canceled, timed out, maintenance
--to-datestringOnly include executions before this date (ISO 8601)

Details

List test executions (campaign runs) from the platform.

An execution is a single campaign run containing one or more tests with their results. Each execution has an overall status and per-test pass/fail counts.

Status values: success, failed, ongoing, pending, canceled, timed out, maintenance.

Use this command to review execution history, find failed runs, identify patterns, or locate a specific execution by name or time range.

Global flags (--output, --debug, --host, …) apply to every command. See the command reference overview.

What's next?

All commands

Browse the full CLI reference.

Get started

Install the CLI and authenticate.

Last updated on