POST api/AccountAPI/Login

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objModel
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "RememberMe": true,
  "UrlReturn": "sample string 1",
  "UserID": "sample string 2",
  "Password": "sample string 3",
  "Token": "sample string 4",
  "FullName": "sample string 5",
  "SupplierID": "sample string 6",
  "TimeToExpire": 7
}

application/xml, text/xml

Sample:
<LoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MLCommon">
  <FullName>sample string 5</FullName>
  <Password>sample string 3</Password>
  <SupplierID>sample string 6</SupplierID>
  <TimeToExpire>7</TimeToExpire>
  <Token>sample string 4</Token>
  <UserID>sample string 2</UserID>
  <RememberMe>true</RememberMe>
  <UrlReturn>sample string 1</UrlReturn>
</LoginModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'LoginModel'.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:

Sample not available.