POST api/Account/ResetPassword

Request Information

URI Parameters

None.

Body Parameters

ResetPasswordDto
NameDescriptionTypeAdditional information
email

string

Required

Data type: EmailAddress

code

string

Required

newPassword

string

Required

Data type: Password

String length: inclusive between 8 and 100

Request Formats

application/json, text/json

Sample:
{
  "email": "sample string 1",
  "code": "sample string 2",
  "newPassword": "sample string 3"
}

application/xml, text/xml

Sample:
<ResetPasswordDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OffDriver.Webapi.Models">
  <code>sample string 2</code>
  <email>sample string 1</email>
  <newPassword>sample string 3</newPassword>
</ResetPasswordDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.