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

# Get install deploy status

> Returns the detailed deploy status for the install, including per-resource health and sync information.



## OpenAPI

````yaml /openapi.json get /v1/installs/{id}/status
openapi: 3.1.0
info:
  title: CNAP API
  version: 1.0.0
  description: >-
    Public API for managing CNAP workspaces, clusters, templates, products, and
    deployments.


    Authenticate with a Personal Access Token via the `Authorization: Bearer
    cnap_pat_...` header.


    Workspace-scoped endpoints require the `X-Workspace-Id` header.
servers:
  - url: https://api.cnap.tech
    description: Production
security: []
paths:
  /v1/installs/{id}/status:
    get:
      tags:
        - Installs
      summary: Get install deploy status
      description: >-
        Returns the detailed deploy status for the install, including
        per-resource health and sync information.
      parameters:
        - schema:
            type: string
            description: Install ID
          required: true
          description: Install ID
          name: id
          in: path
      responses:
        '200':
          description: Install deploy status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstallStatus'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Install not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    InstallStatus:
      type: object
      properties:
        install_id:
          type: string
          example: j572abc123def456
        health:
          type:
            - string
            - 'null'
          example: Healthy
        sync:
          type:
            - string
            - 'null'
          example: Synced
        revision:
          type:
            - string
            - 'null'
          example: abc123def
        resources:
          type:
            - array
            - 'null'
          items:
            $ref: '#/components/schemas/ResourceStatus'
        operation_phase:
          type:
            - string
            - 'null'
          example: Succeeded
        updated_at:
          type:
            - number
            - 'null'
          description: Unix timestamp (seconds) when status was last updated via webhook
      required:
        - install_id
        - health
        - sync
        - revision
        - resources
        - operation_phase
        - updated_at
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: not_found
            message:
              type: string
              example: Resource not found
            param:
              type: string
              description: The request field that caused the error
              example: name
            suggestion:
              type: string
              example: Run `cnap clusters list` to see available clusters
            details: {}
          required:
            - code
            - message
      required:
        - error
    ResourceStatus:
      type: object
      properties:
        group:
          type: string
        kind:
          type: string
        name:
          type: string
        namespace:
          type: string
        version:
          type: string
        status:
          type: string
        health:
          type: object
          properties:
            status:
              type: string
          required:
            - status
      required:
        - kind
        - name
      additionalProperties: {}
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Personal Access Token (cnap_pat_...) or OAuth2 JWT. Create tokens at
        https://cnap.tech/account/tokens

````