Adoption Summary API

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

total_license

integer

Total number of licenses available in the organization

assigned_license

integer

Number of licenses assigned to users

unassigned_license

integer

Number of licenses not yet assigned to any user

activated_license

integer

Number of users who have activated Enpass using their email

activation_pending

integer

Number of assigned users yet to activate Enpass

onboarded_users

integer

Number of activated users who have created their vault

app_setup_pending

integer

Number of users who have activated Enpass but not yet set up their vault

using_enpass

integer

Number of users who have added items and started using Enpass for work

usage_pending

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

added_items

integer

Number of users who have added at least one item beyond default samples

connected_browser_extension

integer

Number of users who have paired the Enpass app with the browser extension

connected_browser_extension_pending

integer

Number of users who have not yet connected the browser extension

using_autofill

integer

Number of users who have used autofill at least once (browser extension or mobile app)

using_autofill_pending

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

total_users

integer

Total number of onboarded users in the organization

active_users

integer

Number of users who have opened or used Enpass on any device at least once in the last 30 days

inactive_users

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
  }
}