> ## 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.

# List integration bindings for a fleet



## OpenAPI

````yaml /api-reference/ilyama.v1.json get /projects/{project_id}/fleets/{fleet_id}/integrations/bindings
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}/fleets/{fleet_id}/integrations/bindings:
    get:
      tags:
        - Fleets
      summary: List integration bindings for a fleet
      operationId: listFleetIntegrationBindings
      parameters:
        - in: path
          name: project_id
          required: true
          schema:
            format: uuid
            type: string
        - in: path
          name: fleet_id
          required: true
          schema:
            format: uuid
            type: string
        - $ref: '#/components/parameters/IntegrationsPage'
        - $ref: '#/components/parameters/IntegrationsLimit'
        - $ref: '#/components/parameters/IntegrationsIdsCSV'
        - $ref: '#/components/parameters/IntegrationsNameQuery'
        - $ref: '#/components/parameters/IntegrationsSearchQuery'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessEnvelope'
          description: Bindings loaded
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Unauthorized
      security:
        - bearerAuth: []
          orgIdHeader: []
components:
  parameters:
    IntegrationsPage:
      description: 1-based page index (default 1).
      in: query
      name: page
      schema:
        default: 1
        minimum: 1
        type: integer
    IntegrationsLimit:
      description: Page size (default 10, maximum 100).
      in: query
      name: limit
      schema:
        default: 10
        maximum: 100
        minimum: 1
        type: integer
    IntegrationsIdsCSV:
      description: >-
        Comma-separated UUIDs restricting the result set (accounts, bindings,
        links, enrollments, or downlinks depending on the route).
      in: query
      name: ids
      schema:
        type: string
    IntegrationsNameQuery:
      description: Filter by name; ignored when `q` is set (the handler prefers `q`).
      in: query
      name: name
      schema:
        type: string
    IntegrationsSearchQuery:
      description: Free-text name search (preferred over `name` when both are provided).
      in: query
      name: q
      schema:
        type: string
  schemas:
    SuccessEnvelope:
      description: >
        Preferred shape for successful JSON responses is `{ ok, data, meta }`
        with list metadata

        (e.g. pagination totals) in top-level `meta`, not nested under `data`.
      properties:
        data:
          description: Response payload; may be null for no-content successes.
          nullable: true
        meta:
          description: Top-level metadata (e.g. pagination); null when unused.
          nullable: true
        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
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    orgIdHeader:
      in: header
      name: ORG-ID
      type: apiKey

````