POST Auth/Logon
Logon with username and password
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| model | A model containing logon info |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"UserName": "JohnDoe",
"Password": "JohnDoespassword",
"Secure": true
}
application/xml, text/xml
Sample:
<LoginModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserName>JohnDoe</UserName> <Password>JohnDoespassword</Password> <Secure>true</Secure> </LoginModel>
