POST api/userapi/changeoperatorpassword
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: ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[ !"#$%&\'()*+,\-\.\/:;<=>?@\[\\\]^_`{|}~])[A-Za-z\d !"#$%&\'()*+,\-\.\/:;<=>?@\[\\\]^_`{|}~]{8,}$ |
|
| confirm_password | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"id": "1947410e-e47b-4fdc-b7c6-e90a6b635c1f",
"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>1947410e-e47b-4fdc-b7c6-e90a6b635c1f</id> <new_password>sample string 2</new_password> </change_password>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.