POST api/Account/Authenticate
Request Information
URI Parameters
None.
Body Parameters
UserLoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| UserName | string |
None. |
|
| Password | string |
None. |
|
| CompanyID | integer |
None. |
|
| LoginType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"UserName": "sample string 2",
"Password": "sample string 3",
"CompanyID": 1,
"LoginType": "sample string 4"
}
application/xml, text/xml
Sample:
<UserLoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MfgProj.BusinessObject"> <CompanyID>1</CompanyID> <LoginType>sample string 4</LoginType> <Password>sample string 3</Password> <UserID>1</UserID> <UserName>sample string 2</UserName> </UserLoginModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.