POST api/v1/LoginForm?returnUrl={returnUrl}

LoginForm - handle login by form submission instead of RESTful API call.

Request Information

Parameters

NameDescriptionAdditional information
model

Define this parameter in the request body.

returnUrl

Define this parameter in the request URI.

Request body formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Password": "sample string 2",
  "Brand": "sample string 3",
  "RememberMe": true
}

application/xml, text/xml

Sample:
<LogOnModel>
  <UserName>sample string 1</UserName>
  <Password>sample string 2</Password>
  <Brand>sample string 3</Brand>
  <RememberMe>true</RememberMe>
</LogOnModel>