Skip to main content
POST
/
v1
/
login
/
mfa
/
challenge
Initiate MFA Challenge
curl --request POST \
  --url https://auth.sandbox.lerian.net/v1/login/mfa/challenge \
  --header 'Content-Type: application/json' \
  --data '
{
  "mfaToken": "eyJhbGciOiJIUzI1NiJ9...",
  "mfaType": "email"
}
'
{
  "message": "MFA challenge initiated"
}

Documentation Index

Fetch the complete documentation index at: https://docs.lerian.studio/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Information used to request a new MFA verification code via email or SMS.

mfaToken
string
required

The temporary MFA token received from the access token endpoint.

mfaType
enum<string>
required

The MFA method to use for the challenge.

Available options:
app,
email,
sms

Response

The MFA challenge was initiated. A verification code has been sent through the requested method.

message
string

Confirmation that the challenge was initiated.