Skip to main content
GET
/
users
/
@me
/
sudo
/
mfa-methods
List sudo multi-factor authentication methods
curl --request GET \
  --url https://api.fluxer.app/v1/users/@me/sudo/mfa-methods \
  --header 'Authorization: <api-key>'
{
  "totp": true,
  "sms": true,
  "webauthn": true,
  "has_mfa": true
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Response

Success

totp
boolean
required

Whether TOTP is enabled

sms
boolean
required

Whether SMS MFA is enabled

webauthn
boolean
required

Whether WebAuthn is enabled

has_mfa
boolean
required

Whether any MFA method is enabled