---
title: "Fetch Run"
method: GET
path: "/workflows/runs/{id}"
tags: ["Workflows::Run"]
---

# Fetch Run

`GET /workflows/runs/{id}`

Retrieve a single workflow run by its id or obfuscated public_id.

## Path parameters

- `id` string, required

## Response `200`

OK

- WorkflowsRunAttributes — An execution record tracking a contact's progress through a workflow. `status` is derived: - `canceled` — the run was explicitly canceled. - `completed` — the run finished normally. - `paused` — the run is waiting at a delay or hold step. - `active` — none of the above; currently in-progress. The list endpoint returns only standard automation runs (`type: null`); survey/STI run subtypes are excluded.
  - `id` integer — Run ID
  - `public_id` string, nullable — Obfuscated run ID
  - `workflow_id` integer — Integer ID of the parent workflow
  - `contact_id` integer, nullable — Raw integer ID of the enrolled contact
  - `current_step_id` integer, nullable — Raw integer ID of the step the run is currently at. Null when not at a step.
  - `event_id` integer, nullable — Raw integer ID of the triggering event that started this run, if any.
  - `type` string, nullable — STI type column. Always `null` for standard automation runs (the only subtype the list endpoint returns).
  - `status` 'active' | 'paused' | 'completed' | 'canceled' — Derived execution status.
  - `skip_communication` boolean — When true, communication steps (send email, etc.) are skipped for this run.
  - `completed_at` string, date-time, nullable — Timestamp when the run completed. Null if still in progress.
  - `paused_at` string, date-time, nullable — Timestamp when the run was last paused. Null if never paused.
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.net/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
