plugins/CleverReach/Public/CleverReach/Get-Groups.ps1
function Get-Groups { [CmdletBinding()] param ( #[Parameter(Mandatory=$false)][Hashtable] $InputHashtable #[Parameter(Mandatory=$false)][String] $GroupId ) begin { } process { $groups = Invoke-CR -Object "groups" -Method GET -Verbose $groups } end { } } |