Login
Login into ALMS using your credentials
HTTP REQUEST
POST https://app.alphalearn.com/webapi/auth/login
QUERY PARAMETERS
| Field | Type | Description |
|---|---|---|
| email required |
string | The email id of the user |
| password required |
string | The password of the user |
| domainName required |
string | The company custom domain |
Example Response:
200 OK
{
"success": true,
"data": {
"user": {
"id": "integer",
"title": "string",
"fname": "string",
"lname": "string",
"mobile": "integer",
"email": "string",
"rollno": "string",
"timezone": "string",
},
"token": "string",
"refresh-token": "string",
}
}