Authentication

The Authentication API provides a secure method for obtaining an access token, which serves as a bearer token for authorizing requests to other APIs within the system. This API endpoint requires a payload containing the user's email and password. Upon successful authentication, a valid access token will be provided, which should be included in the header of subsequent API calls.

POST https://api.normalive.ai/Authenticate/Token

The Authentication API provides a secure method for obtaining an access token, which is essential for authorizing requests to other APIs within the system.

Request Body

NameTypeDescription

password*

String

password

email*

String

your registered email

{
    "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}

Last updated