POST api/v1/cami/authentication/login
Logins the specified user.
Request Information
Headers
URI Parameters
None.
Body Parameters
The user.
User| Name | Description | Type | Additional information |
|---|---|---|---|
| Username |
The user name |
string |
Required |
| Password |
The password |
string |
Required |
Request Formats
application/json
Sample:
{
"Username": "sample string 1",
"Password": "sample string 2"
}
Response Information
Headers
Resource Description
A token in the header for authorized calls
HEADER: Token
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result |
Result of the response |
string |
None. |
| Message |
Additional information of the response |
string |
None. |
Response Formats
application/json
Sample:
{
"Result": "sample string 1",
"Message": "sample string 2"
}