POST device/information
Updates the current Device information.
Remarks
C4M Error Code returned:
- null - The device's information was retrieved with success. 
Request Information
Parameters
| Name | Description | Additional information | 
|---|---|---|
| deviceInformationDto | The Device information. | Define this parameter in the request body. | 
Request body formats
application/json, text/json
					Sample:
							
    {
  "carrier": "VIVO",
  "clientCapabilities": [
    "sample string 1",
    "sample string 2"
  ],
  "deviceDate": {
    "date": "2020-05-15T17:03:27.6960553-03:00",
    "timeZoneId": "E. South America Standard Time",
    "utcOffset": -180
  },
  "imei": "351756053423666",
  "imei2": "351756058473686",
  "locationMode": 1,
  "manufacturer": "Samsung",
  "model": "GT-I9505G",
  "serialNumber": "8988874351756053423666",
  "simCards": [
    {
      "carrier": "Orange",
      "lineNumber": "5132127055",
      "serialNumber": "8988874351756053423666"
    },
    {
      "carrier": "Orange",
      "lineNumber": "5132127055",
      "serialNumber": "8988874351756053423666"
    }
  ],
  "version": "4.1.2",
  "wifiMacAddress": "7c:11:11:11:11:11",
  "receivedDate": "2020-05-15T17:03:27.6960553-03:00"
}
					Response Information
Operation result.
Response body formats
application/json, text/json
					Sample:
							
    {
  "error": null
}