updateUser
Updates a user.
Applies to Clouds and Integration Appliances.
Parameters:
- username
- The user name for the tenant associated with the session ID.
- displayName
- The name to display in the WMC.
- The email address for the username.
- Returns:
- True if the user was successfully updated.
Examples:
The following example is a SOAP
request to update a user. The input for the request is the session
ID and the username. The email address is being
updated in this example.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:sec="http://www.approuter.com/schemas/2008/1/security">
<soapenv:Header>
<sec:sessionId>A85C21BB99E816D48800C90B2C5547D4</sec:sessionId>
</soapenv:Header>
<soapenv:Body>
<sec:updateUser>
<sec:username>webman</sec:username>
<sec:displayName>?</sec:displayName>
<sec:email>webman@mycompany.com</sec:email>
</sec:updateUser>
</soapenv:Body>
</soapenv:Envelope>
The following example is
the SOAP response to the request.
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:updateUserResponse xmlns:ns2="http://www.approuter.com/
schemas/2008/1/security" xmlns:ns3="http://www.approuter.com/schema/
router/1000/security/03">
<ns2:success>true</ns2:success>
</ns2:updateUserResponse>
</S:Body>
</S:Envelope>
The email address was successfully updated.