POST api/userapi/changewebapppassword
Request Information
URI Parameters
None.
Body Parameters
ChangePasswordViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
|
| new_password | string |
Required Matching regular expression pattern: ^(([0-9A-Za-z]{4,})){0,1}((?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[ !"#$%&\'()*+,\-\.\/:;<=>?@\[\\\]^_`{|}~])[A-Za-z\d !"#$%&\'()*+,\-\.\/:;<=>?@\[\\\]^_`{|}~]{8,}){0,1}$ |
|
| confirm_password | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"id": "34dda0a8-71aa-4e09-868e-763b57aad750",
"new_password": "sample string 2",
"confirm_password": "sample string 3"
}
application/xml, text/xml
Sample:
<change_password xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel"> <confirm_password>sample string 3</confirm_password> <id>34dda0a8-71aa-4e09-868e-763b57aad750</id> <new_password>sample string 2</new_password> </change_password>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.