Skip to main content
Get all user groups accessible to the current user. Note: Groups on the same level as your user or lower in the vault hierarchy are retrieved. Required Permissions for using this action:
  • Audit users
External DocumentationTo learn more, visit the CyberArk documentation.

Parameters

ParameterDescription
FilterFilter group records by group type and name using standard REST query format.

Available fields to search by:
- groupType - Group type (Directory or Vault)
- groupName - Group name

Examples:
- groupType eq Directory - Show only directory groups.
- groupName eq Auditors - Find groups named exactly “Auditors”.
Include MembersSelect to include group members in the response.
SearchFilter records by properties that contain the specified search text.
SortThe property by which to sort the retrieved results.

Example Output

{
	"value": [
		{
			"id": 8,
			"groupType": "Vault",
			"members": [
				{
					"UserName": "Auditor",
					"id": 3
				}
			],
			"groupName": "Auditors",
			"description": "Auditors group",
			"location": "\\"
		}
	],
	"count": 1
}

Workflow Library Example

List Groups with Cyberark and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop
I