post https://app.investglass.com/client_portal_api/portal_auth/login
Client Portal API - Login
This endpoint is used to authenticate a user for the client portal.
Request Body
email
(string) - The email of the user.
password
(string) - The password of the user.
Response
token
(string) - The authentication token for the user.
Example
Request:
POST https://app.investglass.com/client_portal_api/portal_auth/login
{
"email": "<user_email>",
"password": "<user_password>"
}
Response:
{
"token": "<authentication_token>"
}