POST api/userapi/changewebapppassword

Request Information

URI Parameters

None.

Body Parameters

ChangePasswordViewModel
NameDescriptionTypeAdditional 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": "a2e3efc2-9316-4b14-af4c-cec98701e922",
  "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>a2e3efc2-9316-4b14-af4c-cec98701e922</id>
  <new_password>sample string 2</new_password>
</change_password>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.