POST api/user/password/forget
Request Information
URI Parameters
None.
Body Parameters
PasswordRecoveryInitRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Login | string |
None. |
|
| Captcha | CaptchaDTO |
None. |
Request Formats
application/json, text/json
Sample:
{
"Login": "sample string 1",
"Captcha": {
"Code": "sample string 1",
"Text": "sample string 2"
}
}
text/html
Sample:
{"Login":"sample string 1","Captcha":{"Code":"sample string 1","Text":"sample string 2"}}
application/xml, text/xml
Sample:
<PasswordRecoveryInitRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Metib.Modules.Core.Api.DTO.Requests">
<Captcha xmlns:d2p1="http://schemas.datacontract.org/2004/07/Metib.Kernel.Api.DTO">
<d2p1:Code>sample string 1</d2p1:Code>
<d2p1:Text>sample string 2</d2p1:Text>
</Captcha>
<Login>sample string 1</Login>
</PasswordRecoveryInitRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PasswordRecoveryInitResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ConfirmationCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ConfirmationCode": "sample string 1"
}
text/html
Sample:
{"ConfirmationCode":"sample string 1"}
application/xml, text/xml
Sample:
<PasswordRecoveryInitResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Metib.Modules.Core.Api.DTO.Requests"> <ConfirmationCode>sample string 1</ConfirmationCode> </PasswordRecoveryInitResponse>