POST User/autologin
Authenticates a user and returns a user token.
Request Information
URI Parameters
None.
Body Parameters
AutologinRequestName | Description | Type | Additional information |
---|---|---|---|
token |
Autologin token |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "token": "sample string 1" }
application/xml, text/xml
Sample:
<AutologinRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.User"> <token>sample string 1</token> </AutologinRequest>
Response Information
Resource Description
AuthenticateResponseName | Description | Type | Additional information |
---|---|---|---|
token |
Access token |
globally unique identifier |
None. |
code |
API result code |
integer |
None. |
error |
API error message |
string |
None. |
UserID |
User ID |
integer |
None. |
IsEmployee |
IsEmployee |
boolean |
None. |
expirationDateUtc |
Expiration Date as UTC |
date |
None. |
APIVersion |
API Version |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "UserID": 1, "IsEmployee": true, "expirationDateUtc": "2024-12-08T01:16:04.0604461-08:00", "APIVersion": 4, "token": "2506a211-1bad-453c-957e-12cca27b4c98", "code": 200, "error": "sample string 2" }
application/xml, text/xml
Sample:
<AuthenticateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.User"> <APIVersion xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">4</APIVersion> <error xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">sample string 2</error> <IsEmployee>true</IsEmployee> <UserID>1</UserID> <expirationDateUtc>2024-12-08T01:16:04.0604461-08:00</expirationDateUtc> <token>2506a211-1bad-453c-957e-12cca27b4c98</token> </AuthenticateResponse>