<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
How to Create a Report on User Types by Credential Provider
Okta Classic Engine
Okta Identity Engine
Administration
Overview

The article presents how to create a custom report that allows an Admin to identify User Types By Credential Provider (that is, Okta Managed, AD Managed) using either Rockstar or API calls.

Applies To
  • Custom Reports
  • API
Solution

Rockstar Method

NOTE: Okta does not support the Rockstar extension.

  1. Navigate to the Admin console.
  2. Go to Directory > People.
  3. Using the Rockstar Extension, click Export Users.

Rockstar Extension

  1. Check the following checkboxes: Credential Provider Type and Credential Provider Name.

Columns to export

  1. Click Export to export as CSV.

 

NOTE: For more than 200 users, pagination will be required. For assistance, refer to this article: Pagination Overview.

 

 

API Method

  1. Using API Call, List Users to list users.
  2. Export and filter the results.
  3. The first 200 users will be shown in the results. 
  4. Use Pagination to see more users.

From the output, the type field shows the value OKTA, which means the users are Okta-mastered.

 "credentials": {
        "password": {},
        "provider": {
            "type": "OKTA",
            "name": "OKTA"
        }
    },

 

From the output, the type field shows the value ACTIVE_DIRECTORY, which means the users are AD-mastered.

    "credentials": {
        "provider": {
            "type": "ACTIVE_DIRECTORY",
            "name": "my_ad_domain.com"
        }
    },

 

 

Related References

 

Loading
How to Create a Report on User Types by Credential Provider