Rhombus Systems Partner Webservice API

The Partner Webservice API from Rhombus Systems — 22 operation(s) for partner webservice.

Operations 22

POST /api/partner/createPartnerClient Create partner client #
POST /api/partner/customizeClient Customize client #
POST /api/partner/customizeClientDevice Customize client device #
POST /api/partner/deleteClient Delete partner client #
POST /api/partner/getApiTokenApplications Get API token applications #
POST /api/partner/getApiTokens Get API tokens #
POST /api/partner/getClaimKeysForPartnerOrg Get claim keys for partner organization #
POST /api/partner/getClientDevices Get client devices #
POST /api/partner/getClientStatusMap Get client status map #
POST /api/partner/getClientSummaryInfo Get client summary info #
POST /api/partner/getClients Get partner clients #
POST /api/partner/getClientsV2 Get partner clients V2 #
POST /api/partner/getDeviceLicensesForOrg Get device licenses for organization #
POST /api/partner/getLicensesForOrg Get licenses for organization #
POST /api/partner/getListOfAllClientDevices Get list of all client devices #
POST /api/partner/getListOfAvailableHardware Get list of available hardware #
POST /api/partner/getShipments Get client shipments #
POST /api/partner/reassignDeviceOrg Reassign device organization #
POST /api/partner/registerCameraToClient Register camera to client #
POST /api/partner/registerDeal Register deal #
POST /api/partner/revokeApiToken Revoke API token #
POST /api/partner/updateSendLicenseExpirationEmail Update send license expiration email #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/rhombus-systems-partner-webservice-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

rhombus-systems-partner-webservice-api-openapi.yml Raw ↑
openapi: 3.2.0
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 Partner Webservice API
  version: '1.0'
servers:
- description: Production Server
  url: https://api2.rhombussystems.com
security:
- ApiKeyAuth: []
tags:
- name: Partner Webservice
paths:
  /api/partner/createPartnerClient:
    post:
      description: Create a client account
      operationId: createPartnerClient
      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_CreatePartnerClientWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_CreatePartnerClientWSResponse'
          description: OK
      summary: Create partner client
      tags:
      - Partner Webservice
  /api/partner/customizeClient:
    post:
      description: Customize a client account
      operationId: customizeClient
      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_CustomizeClientWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_CustomizeClientWSResponse'
          description: OK
      summary: Customize client
      tags:
      - Partner Webservice
  /api/partner/customizeClientDevice:
    post:
      description: Customize a client device
      operationId: customizeClientDevice
      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_CustomizeClientDeviceWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_CustomizeClientDeviceWSResponse'
          description: OK
      summary: Customize client device
      tags:
      - Partner Webservice
  /api/partner/deleteClient:
    post:
      description: Delete a client account
      operationId: deletePartnerClient
      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_DeleteClientWebRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_DeleteClientWebResponse'
          description: OK
      summary: Delete partner client
      tags:
      - Partner Webservice
  /api/partner/getApiTokenApplications:
    post:
      deprecated: true
      description: Get details of all open api token requests for organization
      operationId: partner_getApiTokenApplications
      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/Integration_GetApiTokenApplicationsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Integration_GetApiTokenApplicationsWSResponse'
          description: OK
      summary: Get API token applications
      tags:
      - Partner Webservice
  /api/partner/getApiTokens:
    post:
      description: Get list of all api tokens for a partner
      operationId: partner_getApiTokens
      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/Integration_GetPartnerApiTokensWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Integration_GetApiTokensWSResponse'
          description: OK
      summary: Get API tokens
      tags:
      - Partner Webservice
  /api/partner/getClaimKeysForPartnerOrg:
    post:
      description: Get the claim keys associated with the authenticated partner organization
      operationId: getClaimKeysForPartnerOrg
      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/License_claimkey_GetClaimKeysForPartnerOrgWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/License_claimkey_GetClaimKeysForPartnerOrgWSResponse'
          description: OK
      summary: Get claim keys for partner organization
      tags:
      - Partner Webservice
  /api/partner/getClientDevices:
    post:
      description: Retrieve a list of devices for a specific client.
      operationId: getClientDevices
      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_GetClientDevicesWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetClientDevicesWSResponse'
          description: OK
      summary: Get client devices
      tags:
      - Partner Webservice
  /api/partner/getClientStatusMap:
    post:
      description: Get a map of all client accounts to device and location info
      operationId: getPartnerClientsStatusMap
      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_GetPartnerClientsStatusMapWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetPartnerClientsStatusMapWSResponse'
          description: OK
      summary: Get client status map
      tags:
      - Partner Webservice
  /api/partner/getClientSummaryInfo:
    post:
      description: Get information about a client
      operationId: getClientSummaryInfo
      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_GetClientSummaryInfoWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetClientSummaryInfoWSResponse'
          description: OK
      summary: Get client summary info
      tags:
      - Partner Webservice
  /api/partner/getClients:
    post:
      description: Get a list of all client accounts
      operationId: getPartnerClients
      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
      summary: Get partner clients
      tags:
      - Partner Webservice
  /api/partner/getClientsV2:
    post:
      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
      summary: Get partner clients V2
      tags:
      - Partner Webservice
  /api/partner/getDeviceLicensesForOrg:
    post:
      deprecated: true
      description: Get a list of licenses available for a client organization
      operationId: getDeviceLicensesForOrg
      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/License_GetDeviceLicensesForClientOrgWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/License_GetDeviceLicensesForClientOrgWSResponse'
          description: OK
      summary: Get device licenses for organization
      tags:
      - Partner Webservice
  /api/partner/getLicensesForOrg:
    post:
      deprecated: true
      description: Get a list of licenses available for a client organization
      operationId: getLicensesForOrg
      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/License_GetLicensesForClientOrgWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/License_GetLicensesForClientOrgWSResponse'
          description: OK
      summary: Get licenses for organization
      tags:
      - Partner Webservice
  /api/partner/getListOfAllClientDevices:
    post:
      description: Retrieve list of all devices registered across all clients
      operationId: getListOfAllClientDevices
      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_GetListOfAllClientDevicesRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetListOfAllClientDevicesResponse'
          description: OK
      summary: Get list of all client devices
      tags:
      - Partner Webservice
  /api/partner/getListOfAvailableHardware:
    post:
      description: Retrieve a list of hardware available for remote registration. Any hardware originally registered by a Partner is available for re-registration after being removed from an active client account.
      operationId: getListOfControlledHardware
      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_GetListOfControlledHardwareRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetListOfControlledHardwareResponse'
          description: OK
      summary: Get list of available hardware
      tags:
      - Partner Webservice
  /api/partner/getShipments:
    post:
      operationId: PartnerGetShipments
      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_GetShipmentsWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_GetShipmentsWSResponse'
          description: OK
      summary: Get client shipments
      tags:
      - Partner Webservice
  /api/partner/reassignDeviceOrg:
    post:
      description: Reassign device(s) to a different organization. Only devices which hardware is controlled by the partner can be reassigned
      operationId: reassignDeviceOrg
      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_ReassignDeviceOrgWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_ReassignDeviceOrgWSResponse'
          description: OK
      summary: Reassign device organization
      tags:
      - Partner Webservice
  /api/partner/registerCameraToClient:
    post:
      description: Register a controlled camera to a client
      operationId: registerCameraToClient
      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/Org_CreatePendingRegistrationRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Org_CreatePendingRegistrationResponse'
          description: OK
      summary: Register camera to client
      tags:
      - Partner Webservice
  /api/partner/registerDeal:
    post:
      description: Register a deal
      operationId: registerDeal
      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_RegisterDealWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_RegisterDealWSResponse'
          description: OK
      summary: Register deal
      tags:
      - Partner Webservice
  /api/partner/revokeApiToken:
    post:
      description: 'Remove an api token from organization. Note: this is irreversible'
      operationId: partner_revokeApiToken
      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/Integration_RevokeApiTokenWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Integration_RevokeApiTokenWSResponse'
          description: OK
      summary: Revoke API token
      tags:
      - Partner Webservice
  /api/partner/updateSendLicenseExpirationEmail:
    post:
      description: Update send license expiration email feature flag by org
      operationId: updateManuallySendLicenseExpirationEmail
      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_UpdateManuallySendLicenseExpirationEmailWSRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner_UpdateManuallySendLicenseExpirationEmailWSResponse'
          description: OK
      summary: Update send license expiration email
      tags:
      - Partner Webservice
components:
  schemas:
    RegionPolygonType:
      type: object
      properties:
        coordinates:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/RegionCoordinateType'
    Partner_GetListOfControlledHardwareResponse:
      type: object
      description: Response object containing list of controlled hardware.
      properties:
        controlledHardwareList:
          type:
          - array
          - 'null'
          description: List of controlled hardware
          items:
            $ref: '#/components/schemas/Partner_UnregisteredControlledHardwareType'
    ApiClientTypeEnum:
      type: string
      enum:
      - PARTNER_DEVELOPER
      - DEVELOPER
      - INTERNAL_SALESFORCE
      - TVOS
      - WINDOWS
      - LINUX
      - KIOSK
      - KEYPAD
      - SQUARE
      - KISI
      - OPENPATH
      - TOAST
      - BOULEVARD
      - BRIVO
      - EXECUTABLE
      - HALO
      - SALTO
      - BUTTERFLYMX
      - GENEA
      - PRODATAKEY
      - ENVOY
      - AMT
      - PIMLOC
      - PLACEOS
      - OMNIALERT
      - FLIC
      - SHELLY_DEVICE_EVENT
      - NINEONEONECELLULAR
      - HONEYWELL_ELEMENTS
      - HONEYWELL_ONGUARD
      - HONEYWELL_NETBOX
      - TRITON
      - CHATBOT
      - SIGNATURE_API
      - INCOMING_WEBHOOK
      - UNKNOWN
    CameraPTZConfigType:
      type: object
      properties:
        offset_x_percent:
          type:
          - number
          - 'null'
          format: float
        offset_y_percent:
          type:
          - number
          - 'null'
          format: float
        rotation:
          type:
          - integer
          - 'null'
          format: int32
        size_percent:
          type:
          - number
          - 'null'
          format: float
    Partner_ReassignDeviceOrgWSRequest:
      type: object
      description: Request object for reassigning devices from one organization to another.
      properties:
        serialNumbers:
          type:
          - array
          - 'null'
          description: Serial numbers of the devices that should be reassigned to target organization
          items:
            type:
            - string
            - 'null'
            description: Serial numbers of the devices that should be reassigned to target organization
        sourceOrgUuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
        targetOrgUuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
      required:
      - sourceOrgUuid
      - targetOrgUuid
    Partner_CustomizeClientDeviceWSRequest:
      type: object
      description: Request object for customizing client device settings and configurations.
      properties:
        clientDeviceUuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
        clientOrgUuid:
          type:
          - string
          - 'null'
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
        configUpdate:
          $ref: '#/components/schemas/Device_config_userconfig_IExternalUpdateableAudioVideoUserConfig'
        customizations:
          $ref: '#/components/schemas/Partner_ClientDeviceCustomizationsType'
    FisheyeDisplayModeEnum:
      type: string
      enum:
      - RAW
      - IMMERSIVE
      - TILES
      - RAW_PANO
    CameraMotorConfigType:
      type: object
      properties:
        af_enabled:
          type:
          - boolean
          - 'null'
        af_region:
          $ref: '#/components/schemas/PermyriadRect'
        focus:
          type:
          - integer
          - 'null'
          format: int32
        pan_degrees:
          type:
          - number
          - 'null'
          format: float
        piris:
          type:
          - integer
          - 'null'
          format: int32
        pt_speed:
          type:
          - integer
          - 'null'
          format: int32
        tilt_degrees:
          type:
          - number
          - 'null'
          format: float
        zoom:
          type:
          - integer
          - 'null'
          format: int32
    License_GetLicensesForClientOrgWSResponse:
      type: object
      description: Response object containing list of licenses available for a client organization.
      properties:
        licenses:
          type:
          - array
          - 'null'
          description: List of licenses available for the client organization
          items:
            $ref: '#/components/schemas/LicenseUsageType'
    AddOnLicenseEnum:
      type: string
      enum:
      - CLOUD_ARCHIVING
      - PERCEPTION
      - POSE
      - BEHAVIOR
      - VEHICLE
      - PEOPLE
      - PPE
      - PEOPLE_ANALYTICS
      - UNKNOWN
    LicenseFeature:
      type: object
      properties:
        enabled:
          type:
          - boolean
          - 'null'
        name:
          type:
          - string
          - 'null'
    ActivityEnum:
      type: string
      enum:
      - SOUND_LOUD
      - SOUND_GUN_SHOT
      - TAMPER
      - VISUAL_TAMPER
      - MOTION_TAMPER
      - MOTION
      - MOTION_HUMAN
      - MOTION_CAR
      - MOTION_ANIMAL
      - FACE
      - FACE_IDENTIFIED
      - FACE_UNIDENTIFIED
      - FACE_BLACKLISTED
      - FACE_ALERT
      - POSE_ANOMALOUS
      - POSE_FALL
      - LICENSEPLATE
      - LICENSEPLATE_IDENTIFIED
      - LICENSEPLATE_UNIDENTIFIED
      - LICENSEPLATE_ALERT
      - LICENSEPLATE_BLACKLISTED
      - LICENSEPLATE_TRUSTED
      - PEOPLECOUNT_HIGH
      - PEOPLECOUNT_HIGH_RESET
      - PEOPLECOUNT_LOW
      - PEOPLECOUNT_LOW_RESET
      - HUMAN_ENTER
      - HUMAN_EXIT
      - CAR_ENTER
      - CAR_EXIT
      - TEMPERATURE_EXCEEDED_HIGH
      - TEMPERATURE_EXCEEDED_LOW
      - HUMIDITY_EXCEEDED_HIGH
      - HUMIDITY_EXCEEDED_LOW
      - PM25_EXCEEDED_HIGH
     

# --- truncated at 32 KB (99 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/rhombus-systems/refs/heads/main/openapi/rhombus-systems-partner-webservice-api-openapi.yml