> ## Documentation Index
> Fetch the complete documentation index at: https://docs.samplehc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflow run details

> Retrieves the complete details of a specific workflow run by its ID.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/samplehc/openapi.documented.yml get /api/v2/workflow-runs/{workflowRunId}
openapi: 3.0.3
info:
  title: Sample Healthcare API
  description: API for Sample Healthcare
  version: 1.0.0
servers: []
security: []
paths:
  /api/v2/workflow-runs/{workflowRunId}:
    get:
      tags:
        - Workflow-run
      summary: Workflow run details
      description: Retrieves the complete details of a specific workflow run by its ID.
      parameters:
        - schema:
            type: string
          in: path
          name: workflowRunId
          required: true
          description: The unique identifier of the workflow run.
      responses:
        '200':
          description: Successfully retrieved workflow run details.
          content:
            application/json:
              schema:
                type: object
                properties:
                  workflowRun:
                    description: The detailed workflow run object.
                additionalProperties: false
        '400':
          description: Bad request, e.g., the workflowRunId was not in a valid format.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '404':
          description: Not Found, the workflow run with the specified ID does not exist.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
        '500':
          description: Internal server error encountered while retrieving the workflow run.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false

````