Retrieve all available MFA methods for sudo mode verification (TOTP, SMS, WebAuthn). Requires authentication.
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
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
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
}