Skip to content

Latest commit

 

History

History
 
 

user-management

import DatabaseIcon from '@site/src/assets/database.svg'; import GearIcon from '@site/src/assets/gear.svg'; import KeyIcon from '@site/src/assets/key.svg'; import SearchIcon from '@site/src/assets/search.svg';

User management

User management is a significant area of focus for Logto. You can access your user data and manage them using either the Logto Console or the Management API, both of which are effective. With these tools, you can perform tasks such as

  • Searching for users by username, ID, full name, phone number, or email.
  • Performing several actions on the user, such as unlinking social accounts, updating profile information, deleting users, or resetting passwords.
  • Checking user logs.
  • Assigning roles for access control.
  • Create and manage personal access tokens.

Features for user management {#features-for-user-management}

<DocCardList items={[ { type: 'link', label: 'Understanding user data', href: '/user-management/user-data', description: 'In Logto, user data include basic authentication data based on the OpenID Connect protocol, along with custom data.', customProps: { icon: , }, }, { type: 'link', label: 'Manage users', href: '/user-management/manage-users', description: 'Create, update, read and delete users through Logto Console or Logto Management API.', customProps: { icon: , }, }, { type: 'link', label: 'Advanced user search', href: '/user-management/advanced-user-search', description: 'Directly using Logto Management API to perform advanced user search.', customProps: { icon: , }, }, { type: 'link', label: 'Personal access token', href: '/user-management/personal-access-token', description: 'Personal access token (PAT) provides a secure way for users to grant access tokens without using their credentials and interactive sign-in.', customProps: { icon: , }, }, ]} />