Skip to main content
POST
/
api
/
v2
/
external
/
auth
/
login
Login
curl --request POST \
  --url https://api.lyceum.technology/api/v2/external/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>"
}
'
{
  "access_token": "<string>",
  "refresh_token": "<string>",
  "user_id": "<string>",
  "email": "<string>"
}

Body

application/json
email
string
required
password
string
required

Response

Successful Response

access_token
string
required
refresh_token
string
required
user_id
string
required
email
string
required