POST api/auth/resetpw
Submits a password reset request for the customer matching the submitted information.
Request Information
URI Parameters
None.
Body Parameters
An object containing EITHER the e-mail and phone number OR the customer-ID of the customer whose password should be reset.
PasswordResetRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| PhoneNumber | string |
None. |
|
| CustomerId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"PhoneNumber": "sample string 2",
"CustomerId": 1
}
text/html
Sample:
{"Email":"sample string 1","PhoneNumber":"sample string 2","CustomerId":1}
application/xml, text/xml
Sample:
<AuthorizationController.PasswordResetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LimitlessMobile.WebAPI.Controllers"> <CustomerId>1</CustomerId> <Email>sample string 1</Email> <PhoneNumber>sample string 2</PhoneNumber> </AuthorizationController.PasswordResetRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Nothing. Note that for security reasons, the method returns success even if invalid information is sent.
None.