ctrapi/List-CtrAPIContracts.ps1

function List-CtrApiContracts
{
    Param(
        [Parameter(Mandatory=$false)] [string] [ValidateSet('TOP', 'ALL')] $Depth,
        [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc',
        [Parameter(Mandatory=$false)] [string] $Section = 'papi',
        [Parameter(Mandatory=$false)] [string] $AccountSwitchKey
    )

    $Path = "/contract-api/v1/contracts/identifiers?depth=$Depth&accountSwitchKey=$AccountSwitchKey"

    try {
        $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section
        return $Result
    }
    catch {
        throw $_.Exception
    }  
}