Authenticate user
curl --request POST \
--url https://auth.realtimelca.com/frontegg/identity/resources/auth/v1/user \
--header 'Content-Type: application/json' \
--data '
{
"email": "",
"password": ""
}
'Auth
Authenticate user
Authenticates a user using email and password credentials. The response returns a bearer token that must be supplied as Authorization: Bearer <token> on every other endpoint.
POST
/
user
Authenticate user
curl --request POST \
--url https://auth.realtimelca.com/frontegg/identity/resources/auth/v1/user \
--header 'Content-Type: application/json' \
--data '
{
"email": "",
"password": ""
}
'⌘I

