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

# List Honeywell OnGuard deployments

> List the calling org's OnGuard deployments: one summary per activated deployment (rhombusToken, display name, door count, assigned camera UUIDs). Lets the OnGuard setup tool show what already exists before minting a new deployment, and identifies orphans to pass to deleteHoneywellOnGuardIntegration. Pre-shared secrets are never returned.



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/integrations/accessControl/listHoneywellOnGuardIntegrations
openapi: 3.0.1
info:
  contact:
    email: developer@rhombussystems.com
  description: >-
    This API is for use by Rhombus customers and partners.


    ## Authentication


    All requests require two headers:

    - `x-auth-scheme` — The authentication scheme identifier. Use `api-token`
    for standard API key auth, or `partner-api-token` for partner API auth.

    - `x-auth-apikey` — Your Rhombus API key.


    Example:

    ```

    POST /api/camera/getMinimalCameraStateList

    x-auth-scheme: api-token

    x-auth-apikey: YOUR_API_KEY

    Content-Type: application/json

    ```
  title: Rhombus API
  version: '1.0'
servers:
  - description: Production Server
    url: https://api2.rhombussystems.com
security:
  - ApiKeyAuth: []
paths:
  /api/integrations/accessControl/listHoneywellOnGuardIntegrations:
    post:
      tags:
        - Access Control Integrations Webservice
      summary: List Honeywell OnGuard deployments
      description: >-
        List the calling org's OnGuard deployments: one summary per activated
        deployment (rhombusToken, display name, door count, assigned camera
        UUIDs). Lets the OnGuard setup tool show what already exists before
        minting a new deployment, and identifies orphans to pass to
        deleteHoneywellOnGuardIntegration. Pre-shared secrets are never
        returned.
      operationId: listHoneywellOnGuardIntegrations
      parameters:
        - description: >-
            Authentication scheme identifier. Use `api-token` for standard API
            key authentication, `partner-api-token` for partner API key
            authentication. Must be paired with the `x-auth-apikey` header
            containing your API key.
          example: api-token
          in: header
          name: x-auth-scheme
          required: true
          schema:
            type: string
            default: api-token
            enum:
              - api-token
              - api
              - partner-api-token
              - partner-api
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Integration_ListHoneywellOnGuardIntegrationsWSRequest
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Integration_ListHoneywellOnGuardIntegrationsWSResponse
          description: OK
components:
  schemas:
    Integration_ListHoneywellOnGuardIntegrationsWSRequest:
      type: object
      description: >-
        List the calling org's OnGuard deployments. Takes no parameters today;
        the body is reserved for future filters/paging.
    Integration_ListHoneywellOnGuardIntegrationsWSResponse:
      type: object
      description: >-
        The calling org's OnGuard deployments. Empty list when the integration
        has never been activated or every deployment has been deleted.
      properties:
        error:
          type: boolean
          nullable: true
        errorMsg:
          type: string
          nullable: true
        integrations:
          type: array
          items:
            $ref: >-
              #/components/schemas/Integration_HoneywellOnGuardDeploymentSummaryType
          nullable: true
        warningMsg:
          type: string
          nullable: true
    Integration_HoneywellOnGuardDeploymentSummaryType:
      type: object
      description: >-
        Summary of one OnGuard deployment. Never includes the pre-shared secret;
        the deployment is identified by its rhombusToken, which is also what
        deleteHoneywellOnGuardIntegration takes.
      properties:
        assignedCameraUuids:
          type: array
          items:
            type: string
            format: RUUID
            description: base 64 (url-safe) uuid string
            example: AAAAAAAAAAAAAAAAAAAAAA
            nullable: true
          nullable: true
        displayName:
          type: string
          nullable: true
        doorCount:
          type: integer
          format: int32
          nullable: true
        rhombusToken:
          type: string
          nullable: true
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Rhombus API key. Must be accompanied by the `x-auth-scheme` header
        set to `api-token` (or `partner-api-token` for partner endpoints).
      in: header
      name: x-auth-apikey
      type: apiKey

````