identity-management/List-IDMGroups.ps1
function List-IDMGroups { Param( [Parameter(Mandatory=$false)] [switch] $Actions, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) # nullify false switches $ActionsString = $Actions.IsPresent.ToString().ToLower() if(!$Actions){ $ActionsString = '' } $Path = "/identity-management/v2/user-admin/groups?actions=$ActionsString&accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |