helpers/Test-SslLabsApi.ps1

function Test-SslLabsApi
{
    try
    {
        $null = Invoke-RestMethod -Method get -Uri "$ApiBase/info"
    }
    catch
    {
        throw $_
    }
}