POST users/login

Logs in the user.

Request Information

URI Parameters

None.

Body Parameters

username and password to authenticate

LogonUser
NameDescriptionTypeAdditional information
username

Username to authenticate

string

None.

password

Password to use for authentication

string

None.

Request Formats

application/json, text/json

Sample:
{
  "username": "sample string 1",
  "password": "sample string 2"
}

multipart/form-data

Sample:
{"username":"sample string 1","password":"sample string 2"}

application/xml, text/xml

Sample:
<LogonUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/application_api.Models">
  <password>sample string 2</password>
  <username>sample string 1</username>
</LogonUser>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Example URI: http://localhost/iv2/app-api-v2/users/login

None.