POST api/v1/authentication/login

Logins the specified user.

Request Information

Headers

URI Parameters

None.

Body Parameters

The user.

User
NameDescriptionTypeAdditional information
Username

The user name

string

Required

Password

The password

string

Required

Request Formats

application/json

Sample:
{
  "Username": "username",
  "Password": "password"
}

Response Information

Headers

Resource Description

A token in the header for authorized calls

Response
NameDescriptionTypeAdditional information
Result

Result of the response

string

None.

Message

Additional information of the response

string

None.

Response Formats

application/json

Sample:
{
  "Result": "AA",
  "Message": "Patient"
}