POST api/ForgotPassword
Perform a user password reset by sending a temporary password via email and/or SMS.
Request Information
URI Parameters
None.
Body Parameters
Forgot password details
ForgotPasswordRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserInput | string |
None. |
|
| SendEmail | boolean |
None. |
|
| SendSMS | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserInput": "sample string 1",
"SendEmail": true,
"SendSMS": true
}
application/xml, text/xml
Sample:
<ForgotPasswordRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EBSphere.Mobile.Shared.Models"> <SendEmail>true</SendEmail> <SendSMS>true</SendSMS> <UserInput>sample string 1</UserInput> </ForgotPasswordRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.