Skip to content

SetAMTFeatures

Use this AMT method to enable or disable Intel® AMT features such as KVM, SOL, and IDE-R.

Note

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

  • Endpoint: /amt
  • Method Type: POST
  • Headers: X-MPS-API-Key
  • Body:
{  
   "method":"SetAMTFeatures",
   "payload":{  
      "guid":"038d0240-045c-05f4-7706-980700080009", //Replace with an AMT Device's GUID
      "userConsent":"all",
      "enableSOL": false,
      "enableIDER": false,
      "enableKVM": true
   }
}

Example Outputs:

Success

'200':
    {
      "ResponseBody":"Updated"
    }

Return to MPS Methods