RetrieveDeviceSkuList

Returns a list of an account's registered device SKUs and their statuses from the Verizon Device Management Database (DMD).

To use this API method, your company must be registered on the Open Development portal with the ability to upload devices to Verizon.

NOTE: This API method is currently in limited release, and is not yet available to all customers.

Uses and Requirements

Before uploading devices to the Verizon DMD, device OEMs can use this method to verify that their device SKUs are in the DMD and have the expected status.

Request Parameters

The request only contains the account name.

Parameter Type Description
AccountName
optional
string The name of the account for which you want the SKU list. An account name is usually 10 digits, a hyphen, and then five more digits, such as 0252067890-00001.

Response Parameters

The response includes the account name and a list of all device SKUs registered for the account, and the status of each SKU.

Parameter Type Description
AccountName string The name of the account.
DeviceSkuList array of DeviceSkuInfo objects List of SKUs and their statuses.
DeviceSkuInfo.DeviceSku string Device SKU.
DeviceSkuInfo.DeviceSkuStatus string

The current status of the SKU in the DMD. Some possible values are:

  • Valid
  • Certified and in DMD
  • Certified but not in DMD
  • Not Certified

Example SOAP Request

<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.AccountService">
  <soapenv:Header>
  <token xmlns="http://nphase.com/unifiedwebservice/v2">c93be9a9-1066-43c8-8548-7ab79abb049f</token>
 </soapenv:Header>
  <soapenv:Body>
    <v2:RetrieveDeviceSkuList>
      <v2:Input>
        <nph:AccountName>1223334444-00001</nph:AccountName>
      </v2:Input>
    </v2:RetrieveDeviceSkuList>
  </soapenv:Body>
</soapenv:Envelope>

Example SOAP Response

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <RetrieveDeviceSkuListResponse xmlns="http://nphase.com/unifiedwebservice/v2">
      <Output xmlns:a="http://schemas.datacontract.org/2004/07/NPhase.UnifiedWebService.APIs.v2.Contract.AccountService" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
        <a:DeviceSkuList>
          <a:DeviceSkuInfo>
            <a:DeviceSku>VZW160004850370</a:DeviceSku>
            <a:DeviceSkuStatus>Valid</a:DeviceSkuStatus>
          </a:DeviceSkuInfo>
          <a:DeviceSkuInfo>
            <a:DeviceSku>VZW160004850389</a:DeviceSku>
            <a:DeviceSkuStatus>Certified but not in DMD</a:DeviceSkuStatus>
          </a:DeviceSkuInfo>
          <a:DeviceSkuInfo>
            <a:DeviceSku>VZW160004850434</a:DeviceSku>
            <a:DeviceSkuStatus>Not Certtified</a:DeviceSkuStatus>
          </a:DeviceSkuInfo>
        </a:DeviceSkuList>
        <a:AccountName>1223334444-00001</a:AccountName>
        <a:StatusDescription i:nil="true"/>
      </Output>
    </RetrieveDeviceSkuListResponse>
  </s:Body>
</s:Envelope>