POST api/user/auth/forgot-password/code-send
Request Information
URI Parameters
None.
Body Parameters
UserLoginForgotPasswordView| Name | Description | Type | Additional information |
|---|---|---|---|
| Identifier | string |
Required |
|
| Password | string |
None. |
|
| ConfirmPassword | string |
None. |
|
| ReturnUrl | string |
None. |
|
| VerificationCode | string |
None. |
|
| IsResetPage | boolean |
None. |
|
| Key | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Identifier": "sample string 1",
"Password": "sample string 2",
"ConfirmPassword": "sample string 3",
"ReturnUrl": "sample string 4",
"VerificationCode": "sample string 5",
"IsResetPage": true,
"Key": "sample string 7"
}
application/xml, text/xml
Sample:
<UserLoginForgotPasswordView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAdmin.Model.Models.UserView"> <ConfirmPassword>sample string 3</ConfirmPassword> <Identifier>sample string 1</Identifier> <IsResetPage>true</IsResetPage> <Key>sample string 7</Key> <Password>sample string 2</Password> <ReturnUrl>sample string 4</ReturnUrl> <VerificationCode>sample string 5</VerificationCode> </UserLoginForgotPasswordView>
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.