An error occurs when trying to use updateObject:
Error - Invalid Parameter
SDM 17.x
There are missing parameters under the <attributes> tag
Add to the <attributes> the attributes that are referenced in the attrVals and objectHandle tags.
Example:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://www.ca.com/UnicenterServicePlus/ServiceDesk">
<soapenv:Header/>
<soapenv:Body>
<ser:updateObject>
<sid>SID</sid>
<objectHandle>cnt:<UUID></objectHandle>
<attrVals>
<!--1 or more repetitions:-->
<string>contact_num</string>
<string>123456</string>
</attrVals>
<attributes>
<!--1 or more repetitions:-->
<string>persistent_id</string>
<string>contact_num</string>
</attributes>
</ser:updateObject>
</soapenv:Body>
</soapenv:Envelope>
In the example above, contact_num and persistent_id are referenced under attrVals that also need to be referenced under the attributes tag.