Authenticate

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>"
}

Language
Click Try It! to start a request and see the response here!