---
title: "List Workflow Executions"
method: GET
path: "/api/v1/workflow-configs/executions/"
tags: ["workflow-configs"]
---

# List Workflow Executions

`GET /api/v1/workflow-configs/executions/`

List all workflow executions for the tenant with pagination and filters.

## Query parameters

- `page` integer — Page number
- `page_size` integer — Items per page
- `status` string, nullable — Filter by status
- `intent_name` string, nullable — Filter by intent name (partial match)
- `voice_agent_id` string, uuid, nullable — Filter by voice agent ID

## Response `200`

Successful Response

- WorkflowExecutionListResponse — Paginated response for workflow executions.
  - `items` WorkflowOutboundCallExecutionReadEnriched[]
    - `id` string, uuid, required
    - `voice_call_workflow_id` string, uuid, required
    - `workflow_outbound_call_config_id` string, uuid, nullable, required
    - `trigger_voice_call_id` string, uuid, required
    - `outbound_voice_call_id` string, uuid, nullable, required
    - `status` 'WAITING' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'CANCELLED', required
    - `error_message` string, nullable, required
    - `extracted_parameters` object, required
    - `matched_routing_key` string, required
    - `matched_routing_value` string, required
    - `matched_destination_phone_number` string, required
    - `matched_reasoning` string, nullable, required
    - `scheduled_at` string, date-time, nullable, required
    - `executed_at` string, date-time, nullable, required
    - `tenant_id` string, uuid, required
    - `created_at` string, date-time, nullable
    - `routing_destination_order` integer, required
    - `attempt_number` integer, required
    - `max_retries` integer, required
    - `intent_name` string, nullable
    - `voice_agent_id` string, uuid, nullable
    - `voice_agent_name` string, nullable
    - `trigger_customer_number` string, nullable
    - `trigger_customer_name` string, nullable
  - `total` integer
  - `page` integer
  - `page_size` integer

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/getanana/apis/cleon-api.md) · [All operations](https://skmtc.dev/getanana/apis/cleon-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getanana/cleon-api/revisions/c0f54348e251/schema)
