The Adoption Summary endpoint returns a high-level overview of Enpass deployment, onboarding progression, and application usage across your organization.
Use this endpoint to:
-
Track license distribution and onboarding completion rates
-
Identify drop-offs at each stage of the activation funnel
-
Measure browser extension and autofill adoption
Required scope: Onboarding & Adoption
Request
POST api/v1/adoption/overview/
This endpoint requires no request body or query parameters.
Response
The response contains three objects.
user_onboarding_overview
Tracks users across each stage of the Enpass onboarding journey, from license assignment through to active usage.
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Total number of licenses available in the organization |
|
|
integer |
Number of licenses assigned to users |
|
|
integer |
Number of licenses not yet assigned to any user |
|
|
integer |
Number of users who have activated Enpass using their email |
|
|
integer |
Number of assigned users yet to activate Enpass |
|
|
integer |
Number of activated users who have created their vault |
|
|
integer |
Number of users who have activated Enpass but not yet set up their vault |
|
|
integer |
Number of users who have added items and started using Enpass for work |
|
|
integer |
Number of onboarded users who have not yet added any items |
enpass_app_usage_overview
Summarizes feature adoption and usage patterns for users who are actively using Enpass.
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Number of users who have added at least one item beyond default samples |
|
|
integer |
Number of users who have paired the Enpass app with the browser extension |
|
|
integer |
Number of users who have not yet connected the browser extension |
|
|
integer |
Number of users who have used autofill at least once (browser extension or mobile app) |
|
|
integer |
Number of users who have not yet used the autofill feature |
enpass_active_users
Provides a summary of user activity across the organization over the past 30 days.
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Total number of onboarded users in the organization |
|
|
integer |
Number of users who have opened or used Enpass on any device at least once in the last 30 days |
|
|
integer |
Number of users who have set up Enpass but have not used the app in the last 30 days |
Example Response
{
"user_onboarding_overview": {
"total_license": 500,
"assigned_license": 420,
"unassigned_license": 80,
"activated_license": 350,
"activation_pending": 70,
"onboarded_users": 300,
"app_setup_pending": 50,
"using_enpass": 260,
"usage_pending": 40
},
"enpass_app_usage_overview": {
"added_items": 260,
"connected_browser_extension": 200,
"connected_browser_extension_pending": 60,
"using_autofill": 180,
"using_autofill_pending": 80
},
"enpass_active_users": {
"total_users": 320,
"active_users": 260,
"inactive_users": 60
}
}