Skip to content

Log in users by email and password.

POST
/api/auth/v1/login_mfa
curl --request POST \
--url https://example.com/api/auth/v1/login_mfa \
--header 'Content-Type: application/json' \
--data '{ "mfa_redirect_uri": "example", "mfa_token": "example", "pkce_code_challenge": "example", "redirect_uri": "example", "response_type": "token", "totp": "example" }'
redirect_uri
string | null
mfa_redirect_uri
string | null
response_type
One of:
null
pkce_code_challenge
string | null
Media type application/json
object
mfa_redirect_uri
string | null
mfa_token
required
string
pkce_code_challenge
string | null
redirect_uri
string | null
response_type
One of:
null
totp
string | null

Auth & refresh tokens.

Media type application/json
object
auth_token
required
string
csrf_token
required
string
refresh_token
required
string
Example generated
{
"auth_token": "example",
"csrf_token": "example",
"refresh_token": "example"
}