---
title: "[Beta] Get a workflow"
method: GET
path: "/workflows/{workflow_id}"
tags: ["Workflows (Beta)"]
---

# [Beta] Get a workflow

`GET /workflows/{workflow_id}`

Get a specific workflow by its UUID, including its blocks, trigger configuration, and active status. In companion context (acting user), the user’s unsaved draft — when one exists — is returned as the working copy in place of the latest saved version.

## Path parameters

- `workflow_id` string, required

## Response `200`

Default Response

- WorkflowDetailPublicResponseDto
  - `id` number, required — Version serial ID
  - `workflow_id` string, required — Workflow UUID (groups all versions of the same workflow)
  - `name` string, required — Workflow name
  - `description` string, nullable, required — Workflow description
  - `is_active` boolean, nullable, required — Whether this version is currently active
  - `trigger_type` string, required — Trigger type: "manual-trigger", "ai-trigger", "cron-trigger", "webhook", "form-trigger", or event-based triggers
  - `version_number` number, required — Version number (increments with each edit)
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `workflow_blocks` unknown[], nullable, required — Workflow step/block definitions
    - unknown
  - `trigger_configuration` unknown, required
  - `webhook_url` string, nullable, required — Trigger URL for webhook-type workflows. Call this URL (POST) to trigger the workflow. Null for non-webhook workflows.

## Other responses

- `500` — Internal Server Error

---

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