test-management/Get-TestExecutionContext.ps1
function Get-TestExecutionContext { Param( [Parameter(Mandatory=$false)] [string] $TestDefinitionExecutionID, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/test-management/v1/test-definition-executions/$TestDefinitionExecutionID/context?accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |