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.
- Custom Reports
- API
Rockstar Method
NOTE: Okta does not support the Rockstar extension.
- Navigate to the Admin console.
- Go to Directory > People.
- Using the Rockstar Extension, click Export Users.
- Check the following checkboxes: Credential Provider Type and Credential Provider Name.
- 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
- Using API Call, List Users to list users.
- Export and filter the results.
- The first 200 users will be shown in the results.
- 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
- How to Use the Rockstar Browser Extension
- How to Change the User Credentials Provider Type Attributes
- Pagination Overview
- Users API
- How to Integrate Postman with Okta
- How to Use Pagination when Making API Calls in Postman
