Hi All,
I'm trying to update a node customproperties using SOAPIU. I do not understand where I should but the desired new value for the field CustomedID. If I perform the below SOAP call this will clear the value of CustomerID but how do I fill it with something ?
message body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:inf="http://schemas.solarwinds.com/2007/08/informationservice" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<soapenv:Header/>
<soapenv:Body>
<inf:Update>
<!--Optional:-->
<inf:uri>swis://localhost/Orion/Orion.Nodes/NodeID=100/CustomProperties</inf:uri>
<!--Optional:-->
<inf:propertiesToUpdate>
<item>
<key>CustomerID</key>
<type>System.String</type>
</item>
<!--You may enter ANY elements at this point-->
</inf:propertiesToUpdate>
</inf:Update>
</soapenv:Body>
</soapenv:Envelope>