POST Api/Login/Login
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": "f33b9328-8495-4648-8450-6c38eafa2457",
"DeviceID": "c3e4c09a-5bd4-4b3c-a23e-f7c2154e4245",
"BrowserKey": "58a0b091-7f8e-4d0a-9526-80678da726a3"
}
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>58a0b091-7f8e-4d0a-9526-80678da726a3</BrowserKey> <DeviceID>c3e4c09a-5bd4-4b3c-a23e-f7c2154e4245</DeviceID> <Email>sample string 1</Email> <password>sample string 2</password> <userID>f33b9328-8495-4648-8450-6c38eafa2457</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. |