cps/List-CPSEnrollments.ps1
function List-CPSEnrollments { Param( [Parameter(Mandatory=$false)] [string] $ContractID, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'papi', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/cps/v2/enrollments?contractId=$ContractID&accountSwitchKey=$AccountSwitchKey" $AdditionalHeaders = @{ 'accept' = 'application/vnd.akamai.cps.enrollments.v7+json' } try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -AdditionalHeaders $AdditionalHeaders -EdgeRCFile $EdgeRCFile -Section $Section return $Result.enrollments } catch { throw $_.Exception } } |