Back to all products
One identity system
Users, sessions, and lifecycle β managed from a single pane.
Users
1,247 totalSearch users...
Status
UserRoleStatusLast seen
SC
Sarah Chen
sarah.chen@acme.com
Admin
active
2 min ago
MJ
Marcus Johnson
m.johnson@acme.com
Member
active
1 hr ago
PN
Priya Nair
priya@partner.io
Viewer
invited
β
TE
Tom Eriksson
tom.e@acme.com
Member
suspended
30 days ago
user-management.ts
import { authaz } from "@authaz/sdk";
// List users with filters
const { users, total } = await authaz.users.list({
status: "active",
role: "admin",
limit: 25,
});
// Update profile and metadata
await authaz.users.update(userId, {
profile: { fullName, locale },
metadata: { customerTier: "enterprise" },
});
// Manage sessions
const sessions = await authaz.sessions.listByUser(userId);
await authaz.sessions.revoke(sessionId);
Unified lifecycle
Signup, recovery, suspension, and reactivation β one state machine for product and operations.
API-first management
Every dashboard action backed by a typed SDK endpoint. Script it, automate it, integrate it.
Auditable by default
Profile changes, session events, and account actions logged with actor and tenant context.
Built for product and operations
One identity backbone instead of separate systems for customer apps and internal tooling.
For your product
- β’Consistent profile model across web, mobile, and API
- β’Session management with device-level visibility
- β’Account recovery and security controls built in
For your team
- β’Scoped support access without exposing raw data
- β’Audit trail for compliance and incident response
- β’Same policy enforcement for admin and customer surfaces