XML Schema Change
An issue exists with the channelPartner tag in the XML schema in v3 version of the ManageDeviceService SOAP Web Service. The schema asks for an account name to identify the account unit, but an account ID is expected.
To resolve this, the XML schema for the accountUnit field in the channelPartner tag is changed in the ManageDeviceService code as follows:
Current schema
...
<channelPartners>
<channelPartner>
…
<accountUnit>
<primaryKeys>
<name>xyz</name>
</primaryKeys>
</accountUnit>
</channelPartner>
</channelPartners>
...
Changed schema
...
<channelPartners>
<channelPartner>
…
<accountUnit>
<primaryKeys>
<id>xyz</id>
</primaryKeys>
</accountUnit>
</channelPartner>
</channelPartners>
...