I made the updateuser request as below:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<updateUser xmlns="http://www.cisco.com/AXL/API/11.5">
<userid xmlns="">jialinli</userid>
<associatedDevices xmlns="">
<device>SEPC47295000000</device>
</associatedDevices>
</updateUser>
</soap:Body>
</soap:Envelope>
But this request will remove the former devices associated to the user. How can I associate new device to a user while the user's old devices can be also kept?
Do a getUser first, copy all the existing associated devices and plug them in along with the new one in your updateUser request.
Comments
0 comments
Please sign in to leave a comment.