Skip to main content

Authentication

Login​

GET /api/v1/auth/login​

This route allows you to login with credentials and retrieve session token.

Request​
{
"email": "joseph.maldjian@hye.gg",
"password": "12345"
}
Response​
{
"type": "sync",
"status": "Success",
"status_code": 200,
"operation": "",
"error_code": 0,
"error": "",
"metadata": {
"refreshToken": "REFRESH-TOKEN_JWT",
"accessToken": "ACCESS-TOKEN_JWT"
}
}