Update a partner's password using their old web login information.
Parameter | Description | Additional information |
---|---|---|
model | A model representing a ChangePassword form, consisting of a UserName, OldPassword, and NewPassword. |
Define this parameter in the request body. |
Field Name | Notes |
---|---|
Username | NOT a primary key in Aegis CRM so multiple records could theoretically have the same value. Uniqueness must be enforced in your client. |
{ "Username": "sample string 1", "OldPassword": "sample string 2", "NewPassword": "sample string 3", "ConfirmPassword": "sample string 4" }
<ChangePasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models"> <ConfirmPassword>sample string 4</ConfirmPassword> <NewPassword>sample string 3</NewPassword> <OldPassword>sample string 2</OldPassword> <Username>sample string 1</Username> </ChangePasswordModel>