Update logto config
Update the exposed portion of the current user's logto config. This endpoint currently allows updating only the MFA skip state.
PATCH
/api/my-account/logto-configs
curl \
--request PATCH 'https://[tenant_id].logto.app/api/my-account/logto-configs' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"mfa":{"skipped":true}}'
Request examples
{
"mfa": {
"skipped": true
}
}
Response examples (200)
{
"mfa": {
"skipped": true
}
}