Skip to main content
POST
/
v1
/
api
/
auth
/
login
Authenticate with email and password
curl --request POST \
  --url http://localhost:3091/v1/api/auth/login \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

JWT access token from POST /v1/api/auth/login

Body

application/json
email
string
required
password
string
required

Response

Authentication successful

The response is of type object.