- Postman
- Okta User API
- Okta Groups API
In this video, learn how to use Okta APIs to list users in a group.
In order to pull a list of users in a group in an Okta Org, use the Okta API List Group members via Postman. Review the Postman documentation for set-up instructions and then import the Groups' collection after Postman is installed.
Follow these steps after configuring Postman:
-
Search Groups by name:
GET {{url}}/api/v1/groups?q=NAME -
Get the groupId from the API response.
-
List Group members:
GET /api/v1/groups/${groupId}/users.
Admins can then convert the API responses to a CSV file using the conversion method of their choice.
