> ## 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 minimal environmental gateway states

> Get list of basic states of all environmental gateways of an org



## OpenAPI

````yaml https://api2.rhombussystems.com/api/openapi/public.json post /api/climate/getMinimalEnvironmentalGatewayStates
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/climate/getMinimalEnvironmentalGatewayStates:
    post:
      tags:
        - Climate Webservice
      summary: Get minimal environmental gateway states
      description: Get list of basic states of all environmental gateways of an org
      operationId: getMinimalEnvironmentalGatewayStates
      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/Climate_GetMinimalEnvironmentalGatewayStatesWSRequest
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Climate_GetMinimalEnvironmentalGatewayStatesWSResponse
          description: OK
components:
  schemas:
    Climate_GetMinimalEnvironmentalGatewayStatesWSRequest:
      type: object
      description: Request to retrieve minimal environmental gateway states.
    Climate_GetMinimalEnvironmentalGatewayStatesWSResponse:
      type: object
      description: Response containing minimal environmental gateway states.
      properties:
        error:
          type: boolean
          nullable: true
        errorMsg:
          type: string
          nullable: true
        lastEvaluatedKey:
          type: string
          nullable: true
        minimalEnvironmentalGatewayStates:
          type: array
          description: List of minimal environmental gateway states
          items:
            $ref: '#/components/schemas/Climate_MinimalEnvironmentalGatewayStateType'
          nullable: true
        warningMsg:
          type: string
          nullable: true
    Climate_MinimalEnvironmentalGatewayStateType:
      type: object
      description: Minimal environmental gateway state information.
      properties:
        activities:
          type: array
          description: List of detected activities
          items:
            $ref: '#/components/schemas/ActivityEnum'
          nullable: true
        airQualityIndex:
          type: integer
          format: int32
          description: Air quality index value
          example: 45
          nullable: true
        airQualityIndexPollutant:
          $ref: '#/components/schemas/AirQualityIndexPollutantEnum'
        alertTriggers:
          type: array
          description: List of alert triggers
          items:
            $ref: '#/components/schemas/ActivityEnum'
          nullable: true
        associatedCameras:
          type: array
          description: List of associated camera device facet UUIDs
          items:
            type: string
            format: DeviceFacetUuid
            description: RUUID with optional appended facet information
            example: AAAAAAAAAAAAAAAAAAAAAA.v0
            nullable: true
          nullable: true
        calibrating:
          type: boolean
          description: Whether the gateway is currently calibrating
          example: false
          nullable: true
        ch2oPpb:
          type: number
          format: float
          description: Formaldehyde measurement in parts per billion
          example: 15.7
          nullable: true
        co2Ppm:
          type: integer
          format: int32
          description: CO2 measurement in parts per million
          example: 450
          nullable: true
        coConcentration:
          type: number
          format: double
          description: Carbon monoxide concentration
          example: 2.1
          nullable: true
        connected:
          type: boolean
          description: Whether the gateway is connected
          example: true
          nullable: true
        createdAtMillis:
          type: integer
          format: int64
          description: Creation timestamp in milliseconds
          example: 1640995200000
          nullable: true
        defaultInterfaceMac:
          type: string
          description: Default interface MAC address
          example: 00:1A:2B:3C:4D:5E
          nullable: true
        deviceUuid:
          type: string
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
        externalIPAddress:
          type: string
          description: External IP address
          example: 203.0.113.1
          nullable: true
        falsePositiveConfidencePercent:
          type: number
          format: float
          description: False positive confidence percentage
          example: 5.2
          nullable: true
        firmwareVersion:
          type: string
          description: Firmware version
          example: 2.1.5
          nullable: true
        floorNumber:
          type: integer
          format: int32
          description: Floor number
          example: 2
          nullable: true
        healthDetails:
          $ref: '#/components/schemas/DeviceHealthStatusDetailsEnum'
        healthStatus:
          $ref: '#/components/schemas/DeviceStatusEnum'
        heatIndexDegF:
          type: number
          format: double
          description: Heat index in degrees Fahrenheit
          example: 85.2
          nullable: true
        heatIndexRangeWarning:
          $ref: '#/components/schemas/HeatIndexRangeWarningEnum'
        hwVariation:
          $ref: '#/components/schemas/HardwareVariationEnum'
        iaq:
          type: number
          format: float
          description: Indoor Air Quality index
          example: 85.5
          nullable: true
        lanAddresses:
          type: array
          description: List of LAN IP addresses
          items:
            type: string
            description: List of LAN IP addresses
            nullable: true
          nullable: true
        latitude:
          type: number
          format: double
          description: Latitude coordinate
          example: 37.7749
          nullable: true
        leakDetected:
          type: boolean
          description: Whether a leak is detected
          example: false
          nullable: true
        leakProbePresent:
          type: boolean
          description: Whether leak probe is present
          example: true
          nullable: true
        locationUuid:
          type: string
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
        longitude:
          type: number
          format: double
          description: Longitude coordinate
          example: -122.4194
          nullable: true
        name:
          type: string
          description: Name of the environmental gateway
          example: Main Office Gateway
          nullable: true
        nc0p5:
          type: number
          format: float
          description: Number concentration 0.5 measurement
          example: 120.5
          nullable: true
        nc10p0:
          type: number
          format: float
          description: Number concentration 10.0 measurement
          example: 15.3
          nullable: true
        nc1p0:
          type: number
          format: float
          description: Number concentration 1.0 measurement
          example: 85.2
          nullable: true
        nc2p5:
          type: number
          format: float
          description: Number concentration 2.5 measurement
          example: 45.8
          nullable: true
        nc4p0:
          type: number
          format: float
          description: Number concentration 4.0 measurement
          example: 32.1
          nullable: true
        noxIdx:
          type: number
          format: float
          description: Nitrogen Oxides index
          example: 88.2
          nullable: true
        orgUuid:
          type: string
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
        pm10p0:
          type: number
          format: float
          description: PM10.0 particulate matter measurement
          example: 18.9
          nullable: true
        pm1p0:
          type: number
          format: float
          description: PM1.0 particulate matter measurement
          example: 8.5
          nullable: true
        pm2p5:
          type: number
          format: float
          description: PM2.5 particulate matter measurement
          example: 12.3
          nullable: true
        pm4p0:
          type: number
          format: float
          description: PM4.0 particulate matter measurement
          example: 15.7
          nullable: true
        policyUuid:
          type: string
          format: RUUID
          description: base 64 (url-safe) uuid string
          example: AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
        pressure:
          type: number
          format: float
          description: Pressure measurement
          example: 1013.25
          nullable: true
        probeTempC:
          type: number
          format: float
          description: Temperature probe measurement in Celsius
          example: 24.5
          nullable: true
        relHumid:
          type: number
          format: float
          description: Relative humidity percentage
          example: 45.2
          nullable: true
        serialNumber:
          type: string
          description: Serial number of the environmental gateway
          example: EG-123456789
          nullable: true
        smokeConfidencePercent:
          type: number
          format: float
          description: Smoke detection confidence percentage
          example: 92.8
          nullable: true
        smokeTobaccoConfidencePercent:
          type: number
          format: float
          description: Smoke tobacco detection confidence percentage
          example: 88.1
          nullable: true
        subLocationsHierarchyKey:
          type: string
          format: SubLocationsHierarchyKey
          description: |
            A sequence of one or more base 64 (url-safe) uuid substrings.
            These substrings are separated by dots (.).
          example: AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA
          nullable: true
          pattern: ^([A-Za-z0-9\-_]{22})([.][A-Za-z0-9\-_]{22})*$
        tempC:
          type: number
          format: float
          description: Temperature in Celsius
          example: 23.5
          nullable: true
        tempProbePresent:
          type: boolean
          description: Whether temperature probe is present
          example: true
          nullable: true
        timestampMs:
          type: integer
          format: int64
          description: Timestamp in milliseconds
          example: 1640995200000
          nullable: true
        typPartSize:
          type: number
          format: float
          description: Typical particle size measurement
          example: 2.8
          nullable: true
        vapeConfidencePercent:
          type: number
          format: float
          description: Vape detection confidence percentage
          example: 85.5
          nullable: true
        vapeDetected:
          type: boolean
          description: Whether vape is detected
          example: false
          nullable: true
        vapeThcConfidencePercent:
          type: number
          format: float
          description: Vape THC detection confidence percentage
          example: 72.3
          nullable: true
        vocIdx:
          type: number
          format: float
          description: Volatile Organic Compounds index
          example: 125.5
          nullable: true
    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
        - TVOC_EXCEEDED_HIGH
        - ETOH_EXCEEDED_HIGH
        - IAQ_EXCEEDED_HIGH
        - CO2_EXCEEDED_HIGH
        - CO2_EXCEEDED_LOW
        - PROBE_TEMPERATURE_EXCEEDED_HIGH
        - PROBE_TEMPERATURE_EXCEEDED_LOW
        - PROBE_DISCONNECTED
        - PROBE_CONNECTED
        - HEAT_INDEX_EXCEEDED_HIGH
        - PRESSURE_EXCEEDED_HIGH
        - PRESSURE_EXCEEDED_LOW
        - PM10_EXCEEDED_HIGH
        - PM40_EXCEEDED_HIGH
        - PM100_EXCEEDED_HIGH
        - VOC_IDX_EXCEEDED_HIGH
        - NOX_IDX_EXCEEDED_HIGH
        - FORMALDEHYDE_EXCEEDED_HIGH
        - CARBON_MONOXIDE_EXCEEDED_HIGH
        - AQI_EXCEEDED_HIGH
        - DOOR_AJAR
        - DOOR_OPENED
        - DOOR_CLOSED
        - BUTTON_SINGLE_PRESSED
        - BUTTON_DOUBLE_PRESSED
        - BUTTON_LONG_PRESSED
        - TAG_ARRIVED
        - TAG_DEPARTED
        - TAG_MOVED
        - TAG_POSITIONING_CHANGED
        - TAG_BOUNDARY_INGRESS
        - TAG_BOUNDARY_EGRESS
        - TAG_PANIC
        - BADGE_AUTHORIZED
        - BADGE_UNAUTHORIZED
        - BADGE_UNAUTHORIZED_V2
        - BADGE_AJAR
        - BADGE_MANUAL
        - BADGE_FORCED_OPEN
        - BADGE_LOCKDOWN
        - BADGE_REQUEST_TO_EXIT
        - BADGE_DURESS
        - BADGE_SECURITY_BREACH
        - BADGE_TAMPER
        - BADGE_FACE_MISMATCH
        - POS_ORDER
        - GUN_DETECT_EVENT
        - IOT_SOUND_AGGRESSION
        - IOT_SOUND_HELP
        - IOT_AIR_CO
        - IOT_AIR_CO2
        - IOT_AIR_MASKING
        - IOT_AIR_THC
        - IOT_AIR_VAPE
        - IOT_AIR_VOC
        - IOT_AIR_TEMP
        - IOT_TAMPER
        - IOT_GUNSHOT
        - IOT_BUTTON_SINGLE_CLICK
        - IOT_BUTTON_DOUBLE_CLICK
        - IOT_BUTTON_HOLD
        - IOT_PANIC_BUTTON_TRIGGERED
        - AUDIO_SOUND_SIGNIFICANT
        - AUDIO_SOUND_LOUD
        - AUDIO_SOUND_ABUSIVE
        - AUDIO_SOUND_GREETING
        - AUDIO_SOUND_HELP
        - AUDIO_SOUND_GUN
        - AUDIO_SOUND_GLASS_BREAK
        - AUDIO_SOUND_ALARM_SMOKE_FIRE
        - AUDIO_SOUND_ALARM_CARBON_MONOXIDE
        - AUDIO_SOUND_SIREN
        - CLIMATE_VOC
        - CLIMATE_VAPE
        - CLIMATE_SMOKE
        - CLIMATE_THC
        - CLIMATE_CO2
        - CLIMATE_ETOH
        - CLIMATE_PM25
        - CLIMATE_IAQ
        - CLIMATE_LEAK
        - SOUND_AGGRESSION
        - SOUND_HELP
        - AIR_CO
        - AIR_CO2
        - AIR_MASKING
        - AIR_THC
        - AIR_VAPE
        - AIR_VOC
        - MASK_MISSING
        - HELMET_MISSING
        - GLOVES_MISSING
        - PIR_OCCUPIED
        - PIR_MOVEMENT
        - PIR_VACANT
        - CUSTOM
        - VISITOR_ARRIVED
        - VISITOR_DEPARTED
        - AC_DR_CONNECTED
        - AC_DR_DISCONNECTED
        - AC_DPI_DOOR_OPEN
        - AC_DPI_DOOR_CLOSED
        - AC_DPI_DOOR_AJAR
        - AC_DPI_DOOR_FORCED_OPEN
        - AC_DSR_UNLOCKED
        - AC_DSR_LOCKED
        - AC_DB_TRIGGERED
        - AC_PANIC_BUTTON_TRIGGERED
        - AC_REMOTE_UNLOCK
        - AC_BADGE_AUTHORIZED
        - AC_BADGE_UNAUTHORIZED
        - AC_BADGE_FACE_MISMATCH
        - AC_LOCKDOWN_ACTIVATED
        - AC_LOCKDOWN_DEACTIVATED
        - AC_TAMPER_PROX
        - AC_TAMPER_ACCEL
        - AC_TAMPER_SWITCH
        - AC_GR_ACTIVE
        - AC_GR_INACTIVE
        - AC_GI_ACTIVE
        - AC_GI_INACTIVE
        - AC_REX_ACTIVE
        - AC_REX_INACTIVE
        - AC_APERIO_DEVICE_DISCONNECTED
        - AC_APERIO_DEVICE_CONNECTED
        - AC_APERIO_DEVICE_REBOOT
        - AC_APERIO_DEVICE_TAMPER
        - AC_APERIO_LOW_BATTERY
        - AC_APERIO_FLAT_BATTERY
        - AC_APERIO_OK_BATTERY
        - POWER_SWITCH_BATTERY
        - POWER_SWITCH_PRIMARY
        - CUSTOM_LLM_BOOLEAN_TRUE
        - CUSTOM_LLM_BOOLEAN_FALSE
        - CUSTOM_LLM_THRESHOLD_EXCEEDED_LOW
        - CUSTOM_LLM_THRESHOLD_EXCEEDED_HIGH
        - ALM_AUTHORITIES_CONTACTED
        - ALM_MONITORING_ENABLED
        - ALM_MONITORING_DISABLED
        - ALM_MONITORING_SETTINGS_CHANGE
        - ALM_THREAT_CASE_CLOSED
        - ALM_THREAT_DETECTED
        - ALM_MONITORING_EVENT_DETECTED
        - ROBOT_DOG_DETECTED
        - ROBOT_ARRIVED_AT_WAYPOINT
        - ROBOT_ARRIVED_AT_POSE
        - ROBOT_WAITING_AT_POSE
        - ROBOT_MANUAL_CMD_VEL
        - ROBOT_MANUAL_ACTION
        - ROBOT_MANUAL_POSTURE
        - ROBOT_NAVIGATE_TO_POSE_START
        - ROBOT_NAVIGATE_TO_POSE_END
        - ROBOT_NAVIGATE_TO_HOME_START
        - ROBOT_NAVIGATE_TO_HOME_END
        - ROBOT_NAVIGATE_TO_WAYPOINT_START
        - ROBOT_NAVIGATE_TO_WAYPOINT_END
        - ROBOT_ROUTE_RUN_START
        - ROBOT_ROUTE_RUN_END
        - ROBOT_LOW_BATTERY_DOCKING
        - ROBOT_IDLE_DOCKING
        - ROBOT_EMERGENCY
        - LOITER_HUMAN
        - REID_HUMAN
        - INACTIVITY_HUMAN
        - INACTIVITY_CAR
        - ONGUARD_BADGE_AUTHORIZED
        - ONGUARD_BADGE_ANOMALY
        - ONGUARD_NO_ENTRY_MADE
        - ELEMENTS_BADGE_AUTHORIZED
        - ELEMENTS_BADGE_ANOMALY
        - ELEMENTS_NO_ENTRY_MADE
        - NETBOX_BADGE_AUTHORIZED
        - NETBOX_BADGE_ANOMALY
        - NETBOX_NO_ENTRY_MADE
        - THERMAL_TEMPERATURE_ALARM
        - THERMAL_TEMPERATURE_WARNING
        - THERMAL_FIRE_DETECTED
        - THERMAL_SMOKING_DETECTED
        - THERMAL_FIRE_VERIFIED
        - THERMAL_VISUAL_HOTSPOT
        - THERMAL_VISUAL_HEAT_RISE
        - THERMAL_VISUAL_WARM_BODY
        - UNKNOWN
    AirQualityIndexPollutantEnum:
      type: string
      description: Primary pollutant affecting air quality index
      enum:
        - OZONE
        - PM2P5
        - PM10P0
        - CO
        - NO2
        - SO2
        - UNKNOWN
    DeviceHealthStatusDetailsEnum:
      type: string
      enum:
        - DISCONNECTED
        - FIRMWARE_BEHIND
        - NOT_RECORDING
        - LINK_SPEED_LOW
        - MALFUNCTIONING_MODULES
        - CALIBRATING
        - DELAYED
        - NONE
    DeviceStatusEnum:
      type: string
      enum:
        - RED
        - ORANGE
        - YELLOW
        - GREEN
    HeatIndexRangeWarningEnum:
      type: string
      description: Heat index range warning status
      enum:
        - HEAT_INDEX_OK
        - HEAT_INDEX_WARNING
        - HEAT_INDEX_UNSUPPORTED
    HardwareVariationEnum:
      type: string
      enum:
        - RASPBERRY_PI_3
        - CAMERA_R1
        - CAMERA_R2
        - CAMERA_R2_LONG_RANGE
        - CAMERA_R2_180
        - CAMERA_R3
        - CAMERA_R4
        - CAMERA_R100
        - CAMERA_R120
        - CAMERA_R170
        - CAMERA_R200
        - CAMERA_R500
        - CAMERA_R510
        - CAMERA_R520
        - CAMERA_R600
        - SENSOR_ASSET_TAG_T1
        - SENSOR_DOOR_D1
        - SENSOR_DOOR_D20
        - SENSOR_ENVIRONMENTAL_E1
        - SENSOR_ENVIRONMENTAL_E15
        - SENSOR_ENVIRONMENTAL_E2
        - SENSOR_MOTION_M1
        - SENSOR_MOTION_M15
        - GATEWAY_A1
        - GATEWAY_A100
        - GATEWAY_ENVIRONMENTAL_E50
        - CAMERA_R220
        - CAMERA_R230
        - CAMERA_R36S
        - CAMERA_R410
        - CAMERA_R540
        - CAMERA_R545
        - BADGE_READER_DR1
        - BADGE_READER_DR40
        - BADGE_READER_DR20
        - DOOR_CONTROLLER_DC1
        - DOOR_CONTROLLER_DC20
        - DOOR_CONTROLLER_DC10
        - ETHERNET_TESTER_ET1
        - IO_BOARD_TB1
        - BLE_BUTTON_B10
        - BLE_BUTTON_B15
        - CAMERA_THIRD_PARTY_RELAY
        - CAMERA_THIRD_PARTY_NVR
        - NVR_N100
        - CAMERA_R130
        - NVR_N500
        - CAMERA_R150
        - ROBOT_RC1
        - CAMERA_R210
        - CAMERA_R650
        - UNSPECIFIED
  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

````