GET api/Account/ChangePasswordValidateEmailKey/{id}
Verify whether there is a key. Basic Authentication is NOT needed.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Generated key |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ChangePasswordValidateEmailKeyResultName | Description | Type | Additional information |
---|---|---|---|
FullName |
The user's fullname for the email key |
string |
None. |
UserName |
The user's username for the email key |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "FullName": "John Doe", "UserName": "john.doe" }
application/xml, text/xml
Sample:
<ChangePasswordValidateEmailKeyResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Results"> <FullName>John Doe</FullName> <UserName>john.doe</UserName> </ChangePasswordValidateEmailKeyResult>