POST api/Signing/Account/ChangePassword

Allows a signer to change their user account password.

Request Information

URI Parameters

None.

Body Parameters

The change password data.

ESignSystems.SmartSAFE.Models.Signing.ChangePasswordRequestModel
NameDescriptionTypeAdditional information
Username

Gets or sets the name of the user changing their password.

string

Required

NewPassword

Gets or sets the user's new password.

string

Required

Data type: Password

String length: inclusive between 6 and 100

OldPassword

Gets or sets the user's old password.

string

Required

Data type: Password

String length: inclusive between 6 and 100

Request Formats

application/json, text/json

Sample:
{
  "Username": "sample string 1",
  "NewPassword": "sample string 2",
  "OldPassword": "sample string 3"
}

application/xml, text/xml

Sample:
<ChangePasswordRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing">
  <NewPassword>sample string 2</NewPassword>
  <OldPassword>sample string 3</OldPassword>
  <Username>sample string 1</Username>
</ChangePasswordRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The results of the operation.

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.