POST api/Customer/ResetLazyPassword
Request Information
URI Parameters
None.
Body Parameters
ResetLazyPasswordRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | globally unique identifier |
None. |
|
| NewPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "eb08f50d-0ea3-4c75-b1e0-27f9a5179101",
"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>eb08f50d-0ea3-4c75-b1e0-27f9a5179101</CustomerId> <NewPassword>sample string 2</NewPassword> </ResetLazyPasswordRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResetLazyPasswordResponse| Name | Description | Type | Additional 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>