POST api/Account/ResetPasswordAdmin

Request Information

URI Parameters

None.

Body Parameters

ResetPasswordAdminModel
NameDescriptionTypeAdditional 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": "a02b50d6-196f-43f7-8a6f-f71656efc3b0",
  "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>a02b50d6-196f-43f7-8a6f-f71656efc3b0</UserId>
</ResetPasswordAdminModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ResetPasswordAdminModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.