Initiate login attempt
Initiates a new login attempt. This is for the UI, not to be used programmatically, as it will trigger a magic link email.
POST
/api/login
curl \
--request POST 'http://localhost:4000/api/login' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"email":"test@test.com"}'
Request examples
{
"email": "test@test.com"
}