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": "d0484f08-0ef3-4fba-ae8c-989aa7df02d4",
"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>d0484f08-0ef3-4fba-ae8c-989aa7df02d4</id> <new_password>sample string 2</new_password> </change_password>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.