Skip to main content

Authenticate Session (Login)

This endpoint will authenticate the user session based on a valid email and password combination and return a valid token.

  • Endpoint: /auth/login
  • Method: POST
note

Session authentication using this endpoint is not supported if 2FA is turned ON.

Request Parameters

Parameter nameRequiredDescription
emailtrueEmail ID of a valid/existing user
passwordtruePassword for the valid/existing user

Sample Request

POST: https://<api_url>/auth/login

JSON
{ 
"email": "sample@gmail.com",
"password": "Py%@hTff3"
}