Updates the email address and mobile number of the specified infoRouter user in a single call.
/srv.asmx/UpdateUserContactInfo
/srv.asmx/UpdateUserContactInfo?authenticationTicket=...&userName=...&emailAddress=...&mobileNumber=.../srv.asmx/UpdateUserContactInfo (form data)http://tempuri.org/UpdateUserContactInfo| Parameter | Type | Required | Description |
|---|---|---|---|
authenticationTicket |
string | Yes | Authentication ticket obtained from AuthenticateUser. |
userName |
string | Yes | The username of the account to update. |
emailAddress |
string | Yes | The new email address. Pass the existing value to keep it unchanged. |
mobileNumber |
string | Yes | The new mobile number. Pass the existing value to keep it unchanged. |
<response success="true" error="" />
<response success="false" error="[ErrorCode] Error message" />
System administrator or the user themselves. A user can update their own contact info; a system administrator can update any user’s contact info.
GET /srv.asmx/UpdateUserContactInfo
?authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&userName=jdoe
&emailAddress=john.doe%40example.com
&mobileNumber=%2B15551234567
HTTP/1.1
POST /srv.asmx/UpdateUserContactInfo HTTP/1.1
Content-Type: application/x-www-form-urlencoded
authenticationTicket=3f2504e0-4f89-11d3-9a0c-0305e82c3301
&userName=jdoe
&emailAddress=john.doe@example.com
&mobileNumber=+15551234567
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:UpdateUserContactInfo>
<tns:authenticationTicket>3f2504e0-4f89-11d3-9a0c-0305e82c3301</tns:authenticationTicket>
<tns:userName>jdoe</tns:userName>
<tns:emailAddress>john.doe@example.com</tns:emailAddress>
<tns:mobileNumber>+15551234567</tns:mobileNumber>
</tns:UpdateUserContactInfo>
</soap:Body>
</soap:Envelope>
UpdateUserEmail instead."" for emailAddress or mobileNumber clears that field. To keep a field unchanged, pass its current value — retrieve it first with GetUser (attributes Email and MobileNumber on the <User> element).null for emailAddress or mobileNumber preserves the existing value without clearing it. This null-preservation is not available through the HTTP GET/POST endpoints.| Error | Description |
|---|---|
[900] Authentication failed |
Invalid or missing authentication ticket. |
[901] Session expired or Invalid ticket |
The ticket has expired or does not exist. |
| User not found | The specified username does not exist. |
| Access denied | The calling user lacks permission to update this account. |
SystemError:... |
An unexpected server-side error occurred. |