POST api/Login/LoginVMEduV2
Request Information
URI Parameters
None.
Body Parameters
LoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| Password | string |
None. |
|
| ForceLogin | boolean |
None. |
|
| DeviceTypeId | integer |
None. |
|
| IPAddress | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| Country | string |
None. |
|
| BrowserInfo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Password": "sample string 2",
"ForceLogin": true,
"DeviceTypeId": 1,
"IPAddress": "sample string 3",
"City": "sample string 4",
"State": "sample string 5",
"Country": "sample string 6",
"BrowserInfo": "sample string 7"
}
application/xml, text/xml
Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VMEduWebAPI2.Models"> <BrowserInfo>sample string 7</BrowserInfo> <City>sample string 4</City> <Country>sample string 6</Country> <DeviceTypeId>1</DeviceTypeId> <ForceLogin>true</ForceLogin> <IPAddress>sample string 3</IPAddress> <Password>sample string 2</Password> <State>sample string 5</State> <UserName>sample string 1</UserName> </LoginModel>
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. |