module.info

The module.info command is used to acquire detailed information about a module. The module can be identified by thingKey, ESN, ICCID, IMEI, IMSI, MEID, or MSISDN. Only one of these identifying fields is required.

TR50 Request

{
  "cmd": {
    "command": "module.info",
    "params": {
      "thingKey": "my_module",
      "mode": "tr50"
    }
  }
}

Request Parameters

Name Type Required Description
thingKey String Yes* Key of the thing
thingId String Id of the thing
esn String Esn of the thing
iccid String Iccid of the thing
imei String Imei of the thing
imsi String Imsi of the thing
meid String Meid of the thing
msisdn String Msisdn of the thing
*One of the above Thing Identifier parameter is required.
mode String The mode to send the command ('tr50' or 'sms'). Default is auto.
timeout Integer   Duration for request timeout in seconds. Defaults to 30, if not specified.


TR50 Response

If the command is sent successfully a success message and params list are returned. Otherwise, an error and error message will be returned.

{
  "cmd": {
    "success": true,
    "params": {
      "make": "Telit",
      "model": "HE910",
      "fwVersion": "12.00.005-A014",
      "remAt": true,
      "mnc": 410,
      "mcc": 310,
      "network": "AT&T",
      "imei": "351579052474085",
      "imsi": "214074201505400",
      "iccid": "8934071179000597672",
      "rssi": -75,
      "lastUpdated": "2014-10-09T21:34:02.762Z"
    }
  }
}

Response Parameters

Name Type Description
make Float The name of the manufacturer of the module.
model Float The name of the model of the module.
fwVersion Float The firmware version.
remAt Bool Indicates if a module has Remote AT enabled.
mnc Integer The mobile network code where the module is active.
mcc Integer The mobile country code where the module is active.
network String The network the module is attached to.
imei String The IMEI of the module.
imsi String The IMSI of the module.
iccid String The ICCID of the module.
rssi Integer The RSSI (signal strength in dBM) of the module.
lastUpdated String The time last updated.