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

# GET /projects/{project_id}/ota/releases/{release_id}/deployments



## OpenAPI

````yaml /api-reference/ilyama.v1.json get /projects/{project_id}/ota/releases/{release_id}/deployments
openapi: 3.1.0
info:
  description: >
    Generation-ready starter contract for ilyama's HTTP API.

    This is intentionally scoped to stable routes already mounted in
    services/apis

    so frontend clients can begin integrating against the rewrite immediately.
  title: ilyama Core API
  version: 0.1.0
servers:
  - url: /core/api/v1
security:
  - bearerAuth: []
tags:
  - name: Certificates (HTTP)
  - name: Device JITR
  - name: Device RPC
  - name: Devices
  - name: Edge replication
  - name: Fleets
  - name: Integrations
  - name: MDM
  - name: Notification Event Registry
  - name: Notifications
  - name: OTA
  - name: Observability & data
  - name: Organizations
  - name: Project settings
  - name: Projects
  - name: Projects — Email Templates
  - name: Projects — Notification Subscriptions
  - name: Projects — Status
  - name: System
  - name: Tickets & workflows
  - name: Webhooks
paths:
  /projects/{project_id}/ota/releases/{release_id}/deployments:
    get:
      tags:
        - OTA
      summary: GET /projects/{project_id}/ota/releases/{release_id}/deployments
      operationId: getProjectsProjectIdOtaReleasesReleaseIdDeployments
      parameters:
        - in: path
          name: project_id
          required: true
          schema:
            type: string
        - in: path
          name: release_id
          required: true
          schema:
            type: string
        - in: query
          name: page
          schema:
            type: integer
        - in: query
          name: limit
          schema:
            type: integer
        - description: >-
            Comma-separated deployment UUIDs. Each non-empty token must be a
            valid UUID; malformed values yield HTTP 400.
          in: query
          name: ids
          schema:
            type: string
        - in: query
          name: deployment_name
          schema:
            type: string
        - in: query
          name: status
          schema:
            type: string
        - description: >
            Filter by initiation state when present. Omit to skip this filter.
            Accepted values are true/false, 1/0, or yes/no (case-insensitive).
            Other values yield HTTP 400.
          in: query
          name: initiated
          schema:
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OTADeploymentsListResponse'
          description: OTA deployments
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Bad request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Forbidden
      security:
        - bearerAuth: []
          orgIdHeader: []
components:
  schemas:
    OTADeploymentsListResponse:
      properties:
        data:
          properties:
            deployments:
              items:
                $ref: '#/components/schemas/OTADeploymentListItem'
              type: array
          required:
            - deployments
          type: object
        meta:
          $ref: '#/components/schemas/PaginationMeta'
        ok:
          enum:
            - 1
          type: integer
      required:
        - ok
        - data
        - meta
      type: object
    ErrorEnvelope:
      properties:
        detail:
          type: string
        message:
          oneOf:
            - type: string
            - type: object
        ok:
          enum:
            - 0
          type: integer
      required:
        - ok
        - message
        - detail
      type: object
    OTADeploymentListItem:
      properties:
        created_at:
          format: date-time
          type: string
        deployment_name:
          type: string
        id:
          format: uuid
          type: string
        initiated:
          type: boolean
        org_id:
          format: uuid
          type: string
        ota_release_id:
          format: uuid
          type: string
        project_id:
          format: uuid
          type: string
        scheduled_at:
          format: date-time
          type: string
        status:
          type: string
      required:
        - id
        - ota_release_id
        - project_id
        - org_id
        - initiated
        - created_at
      type: object
    PaginationMeta:
      description: Pagination metadata for list endpoints (snake_case keys).
      properties:
        current_page:
          type: integer
        items_per_page:
          type: integer
        total_items:
          type: integer
        total_pages:
          type: integer
      required:
        - current_page
        - items_per_page
        - total_items
        - total_pages
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    orgIdHeader:
      in: header
      name: ORG-ID
      type: apiKey

````