POST Api/Login/ResetPassword
Request Information
URI Parameters
None.
Body Parameters
LoginCredentials| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| password | string |
None. |
|
| userID | globally unique identifier |
None. |
|
| DeviceID | globally unique identifier |
None. |
|
| BrowserKey | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"password": "sample string 2",
"userID": "13fbefaa-8348-44ab-a6a5-21c73cdd5090",
"DeviceID": "bff939d1-338e-4edc-a653-3a43a7e70b3c",
"BrowserKey": "28234ed5-f389-454b-a14b-5397ebad7581"
}
application/xml, text/xml
Sample:
<LoginCredentials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DevelAPI.Models"> <BrowserKey>28234ed5-f389-454b-a14b-5397ebad7581</BrowserKey> <DeviceID>bff939d1-338e-4edc-a653-3a43a7e70b3c</DeviceID> <Email>sample string 1</Email> <password>sample string 2</password> <userID>13fbefaa-8348-44ab-a6a5-21c73cdd5090</userID> </LoginCredentials>
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. |