Retrieve the exposed portion of a user's logto config. Includes MFA states (enabled, skipped, skipMfaOnSignIn) and passkey sign-in states (skipped).
GET
/api/users/{userId}/logto-configs
curl \
--request GET 'https://[tenant_id].logto.app/api/users/{userId}/logto-configs' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"mfa": {
"enabled": true,
"skipped": true,
"skipMfaOnSignIn": true
},
"passkeySignIn": {
"skipped": true
}
}