Description
This method will update existing client.
Definition (VB.NET)
<WebMethod(), SoapHeader("AuthSoapHeader")> _
Public Function UpdateClient(ByVal ClientID As String, _
ByVal Password As String, _
ByVal FirstName As String, _
ByVal LastName As String, _
ByVal RegistrationName As String, _
ByVal Company As String, _
ByVal Address As String, _
ByVal City As String, _
ByVal ZIP As String, _
ByVal State As String, _
ByVal Country As String, _
ByVal PhoneNumber As String, _
ByVal FaxNumber As String, _
ByVal Email As String, _
ByVal Email2 As String, _
ByVal Note As String, _
ByVal Disabled As Boolean _
) As Result
Security
This method can be used by both administrator users and clients.
Parameters
Name | Type | Description |
---|---|---|
ClientID | String | Unique client ID value |
Password | String | Password |
FirstName | String | First name |
LastName | String | Last name |
RegistrationName | String | Registration name |
Company | String | Company |
Address | String | Address |
City | String | City |
ZIP | String | ZIP |
State | String | State |
Country | String | Country |
PhoneNumber | String | Phone number |
FaxNumber | String | Fax number |
String | ||
Email2 | String | Email 2 |
Note | String | Note |
Disabled | Boolean | Disabled flag |
Return values
In case of success Result.Status is set to STATUS_SUCCESS
In case of error appropriate error status code is returned.
Notes
- Client can not update Disabled flag (this parameter is ignored).