Returns a list of all 4G devices with an ICCID (SIM) that was not activated with the expected IMEI (hardware) during a specified time frame.
The current SIM-Device pairing is compared with expected values from the Verizon device database. If the current IMEI (device ID) does not match the value in the database, the device will be included in the response.
The report can span up to three months of time, and it is possible for a SIM to be installed in several devices during that time. Each unexpected pairing will be reported separately in the response.
You can tell the device manufacturer about any mismatches and ask them to upload corrected information to the Verizon database.
Parameter | Type | Description |
---|---|---|
AccountName
optional* |
string |
The account that you want to search for mismatched devices. If you don't specify an AccountName, the search will include all devices to which you have access. This parameter is required if you are passing An account name is usually numeric, and must include any leading zeros. |
DeviceList
optional* |
DeviceIdentifierCollection | A list of specific devices that you want to check, specified by ICCID or MDN. If you do not specify For each device in DeviceList, use this structure of nested parameters: <DeviceIdentifierCollection> <DeviceIndentifiers> <DeviceIdentifier> <Kind></Kind> <Identifier></Identifier> </DeviceIdentifier> </DeviceIndentifiers> </DeviceIdentifierCollection> |
Kind
required for DeviceList |
string | The type of the device identifier. Valid types of identifiers are ICCID and MDN. |
Identifier
required for DeviceList |
string | The value of the device identifier. |
DeviceGroupName
optional* |
string |
The name of a device group, if you want to only search devices in that group. NOTE: You can use GetDeviceGroupList to get a list of all device groups in the account. |
SIMOTADateFilter
required |
InclusiveDateTimeRange | Filter the results to only include devices that were ativated during a specified time period. The report period cannot be longer than three months. |
Earliest
required |
dateTime | The earliest date and time in the range. This value cannot be earlier than November 1, 2017. |
Latest
required |
dateTime | The latest date and time in the range. Must be within three months of Earliest date. |
* You must include at least one of the optional parameters to identify the devices that you want to check.
Parameter | Type | Description |
---|---|---|
Devices | array of Device objects | The list of devices with IMEIs that do not match their ICCID when compared with the Verizon device database. |
AccountName | string | The account that the device is associated with. |
MDN | string | The assigned phone number of the device. |
ActivationDate | string | The date and time when the SIM was last activated. |
ICCID | string | The ID of the SIM. |
PreIMEI | string | The IMEI of the device prior to the SIM OTA activation on SIMOTADate . |
PostIMEI | string | The IMEI of the device after the SIM OTA activation on SIMOTADate . |
SIMOTADate | string | The date and time of the SIM OTA activation. |
Request an IMEI check on two devices during a one month period:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v2="http://nphase.com/unifiedwebservice/v2" xmlns:nph="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.DeviceService" xmlns:nph1="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.Common"> <soapenv:Header> <v2:token>91bd36d3-a063-4600-928b-bb57eeccb9ac</v2:token> </soapenv:Header> <soapenv:Body> <v2:GetImeiMismatch> <v2:Input> <nph:AccountName>0250493640-00001</nph:AccountName> <nph:DeviceGroupName></nph:DeviceGroupName> <nph:DeviceList> <nph1:DeviceIdentifierCollection> <nph1:DeviceIdentifiers> <nph1:DeviceIdentifier> <nph1:Kind>MDN</nph1:Kind> <nph1:Identifier>8581234567</nph1:Identifier> </nph1:DeviceIdentifier> </nph1:DeviceIdentifiers> </nph1:DeviceIdentifierCollection> <nph1:DeviceIdentifierCollection> <nph1:DeviceIdentifiers> <nph1:DeviceIdentifier> <nph1:Kind>iccid</nph1:Kind> <nph1:Identifier>41120000000000000005</nph1:Identifier> </nph1:DeviceIdentifier> </nph1:DeviceIdentifiers> </nph1:DeviceIdentifierCollection> </nph:DeviceList> <nph:SIMOTADateFilter> <nph1:Earliest>2017-11-02</nph1:Earliest> <nph1:Latest>2017-12-02</nph1:Latest> </nph:SIMOTADateFilter> </v2:Input> </v2:GetImeiMismatch> </soapenv:Body> </soapenv:Envelope>
Response containing a single device. None of the other devices in the request had mismatched IMEIs.
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:Body> <GetImeiMismatchResponse xmlns="http://nphase.com/unifiedwebservice/v2"> <Output xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:a="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.DeviceService"> <a:Devices> <a:Device> <a:AccountName>0212398765-00001</a:AccountName> <a:Mdn>8581234567</a:Mdn> <a:ActivationDate>2017-12-25T18:55:27Z</a:ActivationDate> <a:Iccid>89148000000800784259</a:Iccid> <a:PreImei>990003420535573</a:PreImei> <a:PostImei>987603420573553</a:PostImei> <a:SIMOTADate>2017-12-25T19:02:12Z</a:SIMOTADate> </Device> </Devices> </Output> </GetImeiMismatchResponse> </s:Body> </s:Envelope>