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.

Cancel Demand Response¶

Cancels the currently running Demand Response (DR) or a scheduled DR.

Request¶

POST https://{em_ip_address_or_hostname}/ems/api/org/dr/canceldr
   {
       "dridentifier": "DR16",
    }

Parameters¶

Path Parameters¶

Request¶

ParameterDescription
em_ip_address_or_hostnameThe Manage’s IP address or hostname
dridentifierDR Identifier provided at the time of scheduling.

Response¶

ParameterDescription
status0 – DR cancelled successfully; 1 – DR not cancelled.
msgStatus message description

Sample Request¶

Cancel the scheduled Demand Response (DR) event using the DR identifier. The response indicates that the DR canceled successfully.

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

    POST https://192.80.30.2/ems/api/org/dr/canceldr

Sample Response¶

{
    "dridentifier": "DR16",
}

{
    "status": "0",
    "msg": "DR Cancelled successfully"
}