POST api/user/customerpasswordreset

Request Information

URI Parameters

None.

Body Parameters

CustomerPasswordResetRequest
NameDescriptionTypeAdditional information
dbName

string

None.

lastName

string

None.

email

string

None.

currentPassword

string

None.

newPassword

string

None.

containsResetToken

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "dbName": "sample string 1",
  "lastName": "sample string 2",
  "email": "sample string 3",
  "currentPassword": "sample string 4",
  "newPassword": "sample string 5",
  "containsResetToken": true
}

text/html

Sample:
{"dbName":"sample string 1","lastName":"sample string 2","email":"sample string 3","currentPassword":"sample string 4","newPassword":"sample string 5","containsResetToken":true}

application/xml, text/xml

Sample:
<CustomerPasswordResetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IDPAPI.Models">
  <containsResetToken>true</containsResetToken>
  <currentPassword>sample string 4</currentPassword>
  <dbName>sample string 1</dbName>
  <email>sample string 3</email>
  <lastName>sample string 2</lastName>
  <newPassword>sample string 5</newPassword>
</CustomerPasswordResetRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.