POST api/ResetPassword/ResetPasswordUser

Request Information

URI Parameters

None.

Body Parameters

CLNResetPasswordModel
NameDescriptionTypeAdditional information
strEmail

string

None.

strNewPassWord

string

None.

intCreatedBy

integer

None.

strUserName

string

None.

strPasswordHash

Collection of byte

None.

strPasswordSalt

Collection of byte

None.

intUserId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "strEmail": "sample string 1",
  "strNewPassWord": "sample string 2",
  "intCreatedBy": 3,
  "strUserName": "sample string 4",
  "strPasswordHash": "QEA=",
  "strPasswordSalt": "QEA=",
  "intUserId": 5
}

application/xml, text/xml

Sample:
<CLNResetPasswordModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pozitive_Bank_Entities">
  <intCreatedBy>3</intCreatedBy>
  <intUserId>5</intUserId>
  <strEmail>sample string 1</strEmail>
  <strNewPassWord>sample string 2</strNewPassWord>
  <strPasswordHash>QEA=</strPasswordHash>
  <strPasswordSalt>QEA=</strPasswordSalt>
  <strUserName>sample string 4</strUserName>
</CLNResetPasswordModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.