LocateDevice

Trigger this action to light the blue LED on the front of the appliance to help you locate it in a data centre.

Use the HTTP POST method with the resource /mgmt/actionqueue/default, specifying a request payload with the following format:
{
  "LocateDevice": {
    "LocateLED": "on" | "off"
  }
}

Example

To turn the blue LED on your appliance on, post the following payload to https://yourhost:5554/mgmt/actionqueue/default:

{
  "LocateDevice": {
    "LocateLED": "on"
    }
}