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

# Get partner clients V2

> Get a list of all client accounts. NOTICE: This is the same as getPartnerClients, but only returns the basic info so partners can login to clients quickly. The other info will be returned by getPartnerClientsStatusMap.



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/partner/getClientsV2
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/partner/getClientsV2:
    post:
      tags:
        - Partner Webservice
      summary: Get partner clients V2
      description: >-
        Get a list of all client accounts. NOTICE: This is the same as
        getPartnerClients, but only returns the basic info so partners can login
        to clients quickly. The other info will be returned by
        getPartnerClientsStatusMap.
      operationId: getPartnerClientsV2
      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: partner-api-token
          in: header
          name: x-auth-scheme
          required: true
          schema:
            type: string
            default: partner-api-token
            enum:
              - api-token
              - api
              - partner-api-token
              - partner-api
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Partner_GetPartnerClientsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetPartnerClientsWSResponse'
          description: OK
components:
  schemas:
    Partner_GetPartnerClientsWSRequest:
      type: object
      description: Request object for getting all partner clients.
    Partner_GetPartnerClientsWSResponse:
      type: object
      description: Response object containing list of partner clients.
      properties:
        clients:
          type: array
          description: List of partner clients
          items:
            $ref: '#/components/schemas/Partner_PartnerClientWebType'
          nullable: true
        error:
          type: boolean
          nullable: true
        errorMsg:
          type: string
          nullable: true
        warningMsg:
          type: string
          nullable: true
    Partner_PartnerClientWebType:
      type: object
      description: >-
        Partner client information including organization details and device
        counts.
      properties:
        authorityUuid:
          type: string
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
        clientAccessAllowed:
          type: boolean
          description: Whether client access is allowed (duplicate getter)
          example: true
          nullable: true
        clientAccountAccessUrl:
          type: string
          description: URL for accessing the client account
          example: https://console.rhombussystems.com/client/access
          nullable: true
        clientOrgName:
          type: string
          description: Name of the client organization
          example: Acme Corporation
          nullable: true
        clientOrgUuid:
          type: string
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
        createdAtMillis:
          type: integer
          format: int64
          description: Timestamp when the client was created (milliseconds since epoch)
          example: 1640995200000
          nullable: true
        totalAudioGateways:
          type: integer
          format: int32
          description: Total number of audio gateways
          example: 4
          nullable: true
        totalBadgeReaders:
          type: integer
          format: int32
          description: Total number of badge readers
          example: 12
          nullable: true
        totalCameras:
          type: integer
          format: int32
          description: Total number of cameras
          example: 25
          nullable: true
        totalClimateSensors:
          type: integer
          format: int32
          description: Total number of climate sensors
          example: 10
          nullable: true
        totalDoorSensors:
          type: integer
          format: int32
          description: Total number of door sensors
          example: 8
          nullable: true
        totalLocations:
          type: integer
          format: int32
          description: Total number of locations
          example: 3
          nullable: true
        totalOccupancySensors:
          type: integer
          format: int32
          description: Total number of occupancy sensors
          example: 6
          nullable: true
        totalProximitySensors:
          type: integer
          format: int32
          description: Total number of proximity sensors
          example: 5
          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

````