REST Resources

/api/space/device-management/get-device-statistics

The following operation is supported on this resource:

  • POST - Get Device Statistics by aggregating the Device(s) on the given parameter
POST /get-device-statisticsVersion 6

Get Device Statistics by aggregating the Device(s) on the given parameter.

Sample Usage

POST /get-device-statistics


  • Sample Input XML:
    <get-device-statistics-request>
         <parameter>OS</parameter>
    </get-device-statistics-request>

  • Sample Output XML:
    <get-device-statistics-response uri="/api/space/device-management/get-device-statistics">
         <parameter>String</parameter>
         <device-statistics>
               <device-statistic>
                   <name>String</name>
                   <value>String</value>
               </device-statistic>
         </device-statistics>
    </get-device-statistics-response>

  • Sample Input JSON:
    {
       "get-device-statistics-request" : {
         "parameter" : "OS"
       }
    }

  • Sample Output JSON:
    {
       "get-device-statistics-response" : {
         "@uri" : "/api/space/device-management/get-device-statistics" ,
         "parameter" : "String" ,
         "device-statistics" : {
           "device-statistic" : {
             "name" : "String" ,
             "value" : "String"
           }
         }
       }
    }

  • Access Control

    The following capabilities are required to access this API: ReadDevices