Skip to main content
POST
/
api
/
auth
/
login
Login with email and password
curl --request POST \
  --url http://localhost:8091/api/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>"
}
'
{
  "data": {
    "token": "<string>"
  }
}

Body

application/json
email
string<email>
required

User email address

password
string
required

User password

Response

Login successful

data
object