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 Campuses API¶

Returns the list of campuses for an organization.

Request¶

GET https://{em_ip_address_or_hostname}/ems/api/org/campus/list/1

Parameters¶

Request¶

NameDescription
em_ip_address_or_hostnameThe Enlighted Manage (EM) IP address or hostname

Response¶

NameDescription
idCampus identifier from Manage
nameCampus name as described in Manage
locationCompany's location
contractBaselineBaseline energy savings for the campus
calcMethodEnergy savings calculated based on the sensor’s baseline energy or contract baseline energy.
- SENSOR_BASED – Savings based on the sensor’s baseline energy
- CONTRACTUAL – Savings based on contract baseline energy. The contract baseline energy is calculated using the annual baseline energy savings stipulated in the customer’s signed agreement for the campus at the time of installation.

Sample Request¶

In the example, the details of campuses are returned when you send a GET request to Manage.

GET https://192.80.3.2/ems/api/org/campus/list/1

Sample Response¶

{
    "campus": [
        {
            "id": "1",
            "name": "QAIoT",
            "location": "Chennai",
            "calcMethod": "SENSOR_BASED",
            "contractBaseline": "0.00"
        },
        {
            "id": "3",
            "name": "IoE",
            "location": "Chennai",
            "calcMethod": "SENSOR_BASED",
            "contractBaseline": "0.00"
        },
        {
            "id": "5",
            "name": "NewCampus",
            "location": "Chennai",
            "calcMethod": "SENSOR_BASED",
            "contractBaseline": "0.00"
        }
    ]
}