POST api/Account/Login
Request Information
URI Parameters
None.
Body Parameters
UserLoginViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| Password | string |
None. |
|
| ProductId | string |
None. |
|
| LicenseId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"Password": "sample string 2",
"ProductId": "sample string 3",
"LicenseId": "sample string 4"
}
application/xml, text/xml
Sample:
<UserLoginViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Beezee.WebApi.Models"> <LicenseId>sample string 4</LicenseId> <Password>sample string 2</Password> <ProductId>sample string 3</ProductId> <Username>sample string 1</Username> </UserLoginViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LoginResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1
}
application/xml, text/xml
Sample:
<LoginResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Beezee.WebApi.Models"> <Code>1</Code> </LoginResponseModel>