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.

Schedule Demand Response (DR) for all Facilities¶

Schedule a Demand Response (DR) for all facilities for a specific period from the start time.

Request¶

POST https://{em_ip_address_or_hostname}/ems/api/org/dr/scheduledr`
{
    "pricelevel": "LOW",
    "duration": "60",
    "starttime": "2015-07-21T12:15:49+05:30",
    "dridentifier": "DR16",
    "pricing": "15.0"
 }

Parameters¶

Request¶

ParameterDescription
em_ip_address_or_hostnameThe Manage’s IP address or hostname
pricelevelDR pricing: HIGH / MODERATE / LOW / SPECIAL
durationThe DR duration time in minutes (must be a whole number)
starttimeTime from when DR should be in effect. Format: (yyyyMMddHHmm) year/month/day/hour/minutes
dridentifierUser assigned Demand Response (DR) identifier
pricingDR pricing that is effective for the energy consumed during the DR period (optional)

Response¶

ParameterDescription
status0 – DR schedule successful; 1 – DR not scheduled.
msgMessage description

Sample Request¶

Schedule a Demand Response (DR) at LOW price level for all facilities for 60 minutes starting at 5:30 am on 07-21-2015 at 15 cents. The response indicates that the DR schedule was successful.

If the user is accessing web service with proper session/authenticated token:

POST https://192.80.3.2/ems/api/org/dr/scheduledr 

Sample Response¶

{
  "pricelevel": "LOW",
  "duration": "60",
  "starttime": "2015-07-21T12:15:49+05:30",
  "dridentifier": "DR16",
  "pricing": "15.0"
}

{
  "status": "0",
  "msg": "DR Scheduled successful"
}