POST api/Customer/ResetLazyPassword

Request Information

URI Parameters

None.

Body Parameters

ResetLazyPasswordRequest
NameDescriptionTypeAdditional information
CustomerId

globally unique identifier

None.

NewPassword

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": "6305b962-a7fb-4709-9660-d39a4c43c1e9",
  "NewPassword": "sample string 2"
}

application/xml, text/xml

Sample:
<ResetLazyPasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <CustomerId>6305b962-a7fb-4709-9660-d39a4c43c1e9</CustomerId>
  <NewPassword>sample string 2</NewPassword>
</ResetLazyPasswordRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResetLazyPasswordResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true
}

application/xml, text/xml

Sample:
<ResetLazyPasswordResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <Success>true</Success>
</ResetLazyPasswordResponse>