Retrieve the exposed portion of the current user's logto config. This includes MFA states (enabled, skipped, skipMfaOnSignIn) and passkey sign-in binding states (skipped). Passkey is a WebAuthn MFA factor and shares the same account center field access control as MFA.
GET
/api/my-account/logto-configs
curl \
--request GET 'https://[tenant_id].logto.app/api/my-account/logto-configs' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"mfa": {
"enabled": true,
"skipped": true,
"skipMfaOnSignIn": true
},
"passkeySignIn": {
"skipped": true
}
}