Skip to main content
Version: 1.x

Manage users using Management API

Management API is a collection of APIs that provide access to the Logto backend service. As previously mentioned, the user API is a critical component of this service and can support a wide range of scenarios.

info

Authentication is REQUIRED when you're calling Management API.

The user-related RESTful APIs are mounted at /api/users except the user activities, i.e., user logs /api/logs?userId=:userId.

What Admin Console can do, so do Management API.

Admin Console - User ManagementManagement API
List users GET /api/users
View user profileGET /api/users/:userId
View user activitiesGET /api/logs?userId=:userId
Add a userPOST /api/users
Update user profilePATCH /api/users/:userId
Reset user passwordPATCH /api/users/:userId/password
Delete a userDELETE /api/users/:userId
Remove social connectionDELETE /api/users/:userId/identities/:target
Suspend UserPATCH /api/users/:userId/is-suspended

See API Reference for more.