POST api/account/ResetPassword
Request Information
URI Parameters
None.
Body Parameters
ResetUserPasswordInput| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| VerifyCode | string |
None. |
|
| NewPassword | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"VerifyCode": "sample string 2",
"NewPassword": "sample string 3"
}
application/xml, text/xml
Sample:
<ResetUserPasswordInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Siyan.Lianxinqiao.Core.Users.Dto"> <NewPassword>sample string 3</NewPassword> <UserId>1</UserId> <VerifyCode>sample string 2</VerifyCode> </ResetUserPasswordInput>
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.