POST api/SocialDriver/ForgottenPassword
Request a forgotten password verification code or resend the sign up code/ email confirmation
Request Information
URI Parameters
None.
Body Parameters
The ForgottenPasswordRequest
ForgottenPasswordRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AppId |
The app id |
string |
None. |
| Username |
The desired username |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AppId": "sample string 1",
"Username": "sample string 2"
}
application/xml, text/xml
Sample:
<ForgottenPasswordRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AppId>sample string 1</AppId> <Username>sample string 2</Username> </ForgottenPasswordRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A HttpResponseMessage
ForgottenPasswordResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountAction | AccountAction |
None. |
Response Formats
application/json, text/json
Sample:
{
"AccountAction": 0
}
application/xml, text/xml
Sample:
<ForgottenPasswordResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AccountAction>Unknown</AccountAction> </ForgottenPasswordResponse>