test-management/Remove-TestCasesFromTestSuite.ps1
function Remove-TestCasesFromTestSuite { Param( [Parameter(Mandatory=$true)] [string] $TestSuiteID, [Parameter(Mandatory=$true)] [string] $TestCaseIDs, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/test-management/v2/functional/test-suites/$TestSuiteID/associations/test-cases/dissociate?accountSwitchKey=$AccountSwitchKey" $BodyObj = $TestCaseIDs -split "," $Body = $BodyObj | ConvertTo-Json -Depth 100 try { $Result = Invoke-AkamaiRestMethod -Method POST -Path $Path -Body $Body -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |