---
title: "Get Workflow Run"
method: GET
path: "/v2/workflow-runs/{id}"
tags: ["Workflow Run API"]
---

# Get Workflow Run

`GET /v2/workflow-runs/{id}`

Get a specific workflow run by ID.

## Path parameters

- `id` string, required — The ID of the workflow run.

## Response `200`

Success

- SvflowPublicapiGetWorkflowRunResponse
  - `data` SvflowPubapimodelsWorkflowRun — WorkflowRun represents a single execution of a workflow.
    - `id` string — The unique ID of the workflow run. Persist this to follow up with GetWorkflowRun / AwaitWorkflowRunResult. This is the orchestration (Temporal) run ID — the same identifier returned by the webhook trigger response and by the worker SDK as `ctx.currentWorkflowRun.id`.
    - `workflowId` string — The ID of the workflow that was run.
    - `teamId` string — The ID of the team that the workflow belongs to.
    - `status` 'WORKFLOW_RUN_STATUS_UNSPECIFIED' | 'WORKFLOW_RUN_STATUS_PENDING' | 'WORKFLOW_RUN_STATUS_RUNNING' | 'WORKFLOW_RUN_STATUS_COMPLETED' | 'WORKFLOW_RUN_STATUS_FAILED' | 'WORKFLOW_RUN_STATUS_DENIED' | 'WORKFLOW_RUN_STATUS_CANCELED'
    - `createdAt` string — The timestamp when the workflow run was created.
    - `completedAt` string, nullable — The timestamp when the workflow run completed (if applicable).
    - `initiatedByUserId` string — The ID of the user who initiated the workflow run.
    - `targetUserId` string, nullable — The ID of the target user for the workflow run (if different from initiator).
    - `inputs` string, nullable — The inputs provided to the workflow (JSON string).
    - `output` string, nullable — The output of the workflow run (JSON string, available when completed or failed).
    - `linkedTicketId` string, nullable — The ID of the linked ticket, if any.
    - `approvalRequestId` string, nullable — The ID of the approval request associated with this workflow run, if any.
    - `statusUpdatedAt` string — The timestamp when the workflow run status was last updated.
    - `parentWorkflowRunId` string, nullable — The run ID of the parent workflow run that spawned this run, if this run is a child (sub-workflow). Empty for top-level runs.
    - `parentWorkflowRunStepNumber` union — The step number in the parent run that spawned this run, if this run is a child.
      - integer
      - string, int64

## Other responses

- `default` — Error

---

[API](https://skmtc.net/serval/apis/serval-public-api.md) · [All operations](https://skmtc.net/serval/apis/serval-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/serval/serval-public-api/versions/0549515e9384/schema)
