POST api/Account/ResetPasswordAdmin
Request Information
URI Parameters
None.
Body Parameters
ResetPasswordAdminModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
Required |
|
| NewPassword | string |
Required Data type: Password String length: inclusive between 6 and 100 |
|
| ConfirmPassword | string |
Data type: Password |
|
| RowState | RowState |
None. |
|
| IsChecked | boolean |
None. |
|
| MessageId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "78630204-f49f-4b0b-a60b-5d56ceee8c18",
"NewPassword": "sample string 2",
"ConfirmPassword": "sample string 3",
"RowState": 0,
"IsChecked": true,
"MessageId": "sample string 5"
}
application/xml, text/xml
Sample:
<ResetPasswordAdminModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RCCI.Security"> <IsChecked xmlns="http://schemas.datacontract.org/2004/07/RCCI.Common">true</IsChecked> <MessageId xmlns="http://schemas.datacontract.org/2004/07/RCCI.Common">sample string 5</MessageId> <ProposedChanges xmlns="http://schemas.datacontract.org/2004/07/RCCI.Common" /> <RowState xmlns="http://schemas.datacontract.org/2004/07/RCCI.Common">Unchanged</RowState> <ConfirmPassword>sample string 3</ConfirmPassword> <NewPassword>sample string 2</NewPassword> <UserId>78630204-f49f-4b0b-a60b-5d56ceee8c18</UserId> </ResetPasswordAdminModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.