POST api/Account/ResetPasswordAdmin
Request Information
URI Parameters
None.
Body Parameters
ResetPasswordAdminModelName | 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": "fd123e5b-5dd6-4483-95f8-ef2ba318727b", "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>fd123e5b-5dd6-4483-95f8-ef2ba318727b</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.