POST
/
auth
/
login
/
email
curl --request POST \
  --url https://kanbn.com/api/v1/auth/login/email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
email
string
required

Response

200
application/json
Successful response
success
boolean
required