The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Enlighted

The Enlighted lighting solution optimizes energy savings while enhancing occupant productivity, well-being, and security.

Get All Floors API¶

Returns the list of all floors in the building of an organization.

Request¶

GET https://{em_ip_address_or_hostname}/ems/api/org/floor/v1/list

Parameters¶

NameDescription
Request
em_ip_address_or_hostnameThe Enlighted Manage (EM) IP address or hostname
Response
id**Floor identifier (**used as the primary identifier in other API calls)
nameFloor name as described in Manage
buildingNameBuilding name
campusNameCampus name
organizationOrganization name
descriptionFloor description; this field will be empty if it is not described in Manage
floorPlanUrlFloor plan image name. If the floor plan does not have a name, it is returned as default_floor_plan.gif

Sample Request¶

Send a request to return the list of all floors in the building. For example, if the Main building in Hampton campus has three floors: First Floor, Second Floor, and Third Floor, the response will include details for all three floors.

GET https://192.80.3.2/ems/api/org/floor/v1/list 

Sample Response¶

{
  "floor": [
    {
      "id": "1",
      "name": "First Floor",
      "buildingName": "Main Building",
      "campusName": "Hampton Campus",
      "organization": "Acme Inc",
      "description": "Sales and Marketing",
      "floorPlanUrl": "Main_bldg_flr1.jpg"
    },
    {
      "id": "2",
      "name": "Second Floor",
      "buildingName": "Main Building",
      "campusName": "Hampton Campus",
      "organization": "Acme Inc",
      "description": "Engineering and Product",
      "floorPlanUrl": "Main_bldg_flr2.jpg"
    },
    {
      "id": "3",
      "name": "Third Floor",
      "buildingName": "Main Building",
      "campusName": "Hampton Campus",
      "organization": "Acme Inc",
      "description": "Finance",
      "floorPlanUrl": "Main_bldg_flr3.jpg"
    }
  ]
}