GET apioauth/matrixv2/devicetypes
Get all possible device types
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A collection of DeviceTypeResponses
Collection of DeviceTypeResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | 
                         The id of the device type  | 
                    unsigned integer | 
                             None.  | 
                
| Name | 
                         The name of the device type  | 
                    string | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "Id": 1,
    "Name": "sample string 2"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfDeviceTypeResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DeviceTypeResponse>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </DeviceTypeResponse>
  <DeviceTypeResponse>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </DeviceTypeResponse>
</ArrayOfDeviceTypeResponse>