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

# Get clarifications probe run status

> Thin status for a `survey.questionnaire_clarifications` run (reconcile when the NDJSON stream ends early).



## OpenAPI

````yaml /openapi/program.openapi.json get /surveys/{surveyId}/questionnaire/clarifications/runs/{runId}
openapi: 3.1.0
info:
  title: Questra Program API
  version: 0.0.1
  description: >-
    REST API for the Questra Program product. Browser users authenticate through
    Questra Auth SSO; automation uses workspace-scoped API keys (`Authorization:
    Bearer qpk_live_…`). API keys carry scopes enforced before handlers.
    Outbound webhooks follow Standard Webhooks (at-least-once delivery;
    consumers must be idempotent).
servers:
  - url: /v1
    description: Program API base path
security: []
paths:
  /surveys/{surveyId}/questionnaire/clarifications/runs/{runId}:
    get:
      tags:
        - Survey questionnaire clarifications
      summary: Get clarifications probe run status
      description: >-
        Thin status for a `survey.questionnaire_clarifications` run (reconcile
        when the NDJSON stream ends early).
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: surveyId
          in: path
        - schema:
            type: string
            minLength: 1
            description: Workflow SDK run id (`wrun_...`)
          required: true
          description: Workflow SDK run id (`wrun_...`)
          name: runId
          in: path
      responses:
        '200':
          description: Clarifications run status
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/QuestionnaireClarificationsRunStatusResponse
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
components:
  schemas:
    QuestionnaireClarificationsRunStatusResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/QuestionnaireClarificationsRunStatus'
      required:
        - data
    ErrorBody:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        resource:
          type: string
        slug:
          type: string
        file_id:
          type: string
        endpoint_id:
          type: string
        event_id:
          type: string
        delivery_id:
          type: string
        api_key_id:
          type: string
        integration_id:
          type: string
        audit_id:
          type: string
        status:
          type: string
        details: {}
        question_ids:
          type: array
          items:
            type: string
        survey_ids:
          type: array
          items:
            type: string
        revisions:
          type: array
          items:
            type: number
      required:
        - error
    QuestionnaireClarificationsRunStatus:
      type: object
      properties:
        run_id:
          type: string
          minLength: 1
        status:
          type: string
          enum:
            - pending
            - running
            - completed
            - failed
            - cancelled
        error:
          type:
            - object
            - 'null'
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        started_at:
          type:
            - string
            - 'null'
          format: date-time
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
      required:
        - run_id
        - status
        - error
        - started_at
        - completed_at

````