Skip to content

PowerState

This AMT method retrieves the current state of the Intel® AMT device, and returns a number that that maps to PowerActions table.

Click here for supported input and output types.

Example: Request Body

Important Note: More information on obtaining an AMT device's GUID can be found here.

Note: The following code block is an example of what would be the data sent as part of the POST request.

//amt method

{  
   "method":"PowerState",
   "payload":{  
      "guid":"038d0240-045c-05f4-7706-980700080009" //Replace with an AMT Device's GUID
   }
}

Example : Success ResponseBody

'200':
    {
      "ResponseBody":{
        "powerState" : 2
    }

Return to MPS Methods