POST api/Account/SendReset
Request Information
URI Parameters
None.
Body Parameters
ForgotPasswordViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
Required |
|
| Subject | string |
Required |
|
| Body | string |
Required |
|
| IpAddress | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Subject": "sample string 2",
"Body": "sample string 3",
"IpAddress": "sample string 4"
}
application/xml, text/xml
Sample:
<ForgotPasswordViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AuthServer.Models"> <Body>sample string 3</Body> <IpAddress>sample string 4</IpAddress> <Name>sample string 1</Name> <Subject>sample string 2</Subject> </ForgotPasswordViewModel>
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.