GET api/Account/Login_Testing
Login user and get bearer token (TESTING)
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Bearer Token
Token| Name | Description | Type | Additional information |
|---|---|---|---|
| TokenValue | string |
None. |
|
| AccountGuid | globally unique identifier |
None. |
|
| LoginMessage | string |
None. |
|
| IsTestUser | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TokenValue": "sample string 1",
"AccountGuid": "9e204861-cb58-4116-824a-e4f8d7fb4f02",
"LoginMessage": "sample string 3",
"IsTestUser": 4
}
application/xml, text/xml
Sample:
<Token xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Core.Models"> <AccountGuid>9e204861-cb58-4116-824a-e4f8d7fb4f02</AccountGuid> <IsTestUser>4</IsTestUser> <LoginMessage>sample string 3</LoginMessage> <TokenValue>sample string 1</TokenValue> </Token>