POST api/PasswordRecovery?validationKey={validationKey}&partnerKey={partnerKey}&APIGUID={APIGUID}
Sends password recovery link to account Password recover structure
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| validationKey | string |
Required |
|
| partnerKey | string |
Required |
|
| APIGUID | string |
Required |
Body Parameters
PasswordRecovery| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorID | string |
None. |
|
| VendorPassword | string |
None. |
|
| ResidentKey | integer |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"VendorID": "sample string 1",
"VendorPassword": "sample string 2",
"ResidentKey": 3,
"Email": "sample string 4"
}
application/xml, text/xml
Sample:
<PasswordRecovery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VMSRXChange.DataClassesAuthentication"> <Email>sample string 4</Email> <ResidentKey>3</ResidentKey> <VendorID>sample string 1</VendorID> <VendorPassword>sample string 2</VendorPassword> </PasswordRecovery>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |