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

# Get Super Node Snapshot Status

> Report whether each SuperNodeConfig inside the requested workflow version still
matches the latest active publish of its sub-workflow.

Used by the dashboard to flag parent workflows whose embedded snapshots have
drifted, so the user can re-select the sub-workflow and capture a fresh snapshot.
Read-only — does not mutate any state.



## OpenAPI

````yaml https://api-prod.interactly.ai/api-docs/workflows/api.json get /workflows/v1/workflows/{workflow_id}/super-node-snapshot-status
openapi: 3.1.0
info:
  title: Interactly API
  description: API for building interactly.ai services
  version: 1.1.0
  contact:
    name: Interactly
    url: https://interactly.ai
    email: developers@interactly.ai
servers:
  - url: https://api-prod.interactly.ai
    description: API Server
security: []
paths:
  /workflows/v1/workflows/{workflow_id}/super-node-snapshot-status:
    get:
      tags:
        - Super Nodes
      summary: Get Super Node Snapshot Status
      description: >-
        Report whether each SuperNodeConfig inside the requested workflow
        version still

        matches the latest active publish of its sub-workflow.


        Used by the dashboard to flag parent workflows whose embedded snapshots
        have

        drifted, so the user can re-select the sub-workflow and capture a fresh
        snapshot.

        Read-only — does not mutate any state.
      operationId: >-
        workflow_service_get_super_node_snapshot_status_v1_workflows__workflow_id__super_node_snapshot_status_get
      parameters:
        - name: workflow_id
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/PydanticObjectId'
        - name: version_number
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: Version Number
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowSnapshotStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearer: []
components:
  schemas:
    PydanticObjectId:
      type: string
      maxLength: 24
      minLength: 24
      pattern: ^[0-9a-f]{24}$
      example: 5eb7cf5a86d9755df3a6c593
    WorkflowSnapshotStatusResponse:
      properties:
        workflow_id:
          type: string
          title: Workflow Id
        version_number:
          anyOf:
            - type: integer
            - type: 'null'
          title: Version Number
        super_nodes:
          items:
            $ref: '#/components/schemas/SuperNodeSnapshotStatus'
          type: array
          title: Super Nodes
      type: object
      required:
        - workflow_id
        - super_nodes
      title: WorkflowSnapshotStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SuperNodeSnapshotStatus:
      properties:
        super_node_logical_id:
          type: string
          title: Super Node Logical Id
          description: logical_id of the SuperNodeConfig node in the parent
        super_workflow_id:
          type: string
          title: Super Workflow Id
          description: ObjectId of the sub-workflow this super node references
        embedded_version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Embedded Version
          description: >-
            Version number of the snapshot currently embedded in the
            SuperNodeConfig
        latest_active_version:
          anyOf:
            - type: integer
            - type: 'null'
          title: Latest Active Version
          description: >-
            Latest active published version of the sub-workflow, or None if no
            active publish exists
        is_stale:
          type: boolean
          title: Is Stale
          description: True when latest_active_version exists and exceeds embedded_version
        is_unpublished:
          type: boolean
          title: Is Unpublished
          description: True when no active SuperNodesModel exists for the sub-workflow
      type: object
      required:
        - super_node_logical_id
        - super_workflow_id
        - is_stale
        - is_unpublished
      title: SuperNodeSnapshotStatus
      description: Per-super-node staleness report inside the parent workflow.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: Bearer
      type: http
      description: >-
        Retrieve your API Key from [Dashboard API Keys
        Section](https://dashboard.interactly.ai/api-keys).

````