Public/Companies.ps1

function Get-TMCompany {
    param(
        [Parameter(Mandatory = $false)][PSObject]$TMSession = 'Default',
        [Parameter(Mandatory = $false)][String]$Name
    )

    ## Get Session Configuration
    $TMSession = Get-TMSession $TMSession

    #Honor SSL Settings
    $TMCertSettings = @{SkipCertificateCheck = $TMSession.AllowInsecureSSL }

    # Format the uri
    $Instance = $TMSession.TMServer.Replace('/tdstm', '').Replace('https://', '').Replace('http://', '')
    $uri = "https://$instance/tdstm/partyGroup/listJson"

    try {
        $response = Invoke-WebRequest -Method Get -Uri $uri -WebSession $TMSession.TMWebSession @TMCertSettings
    } catch {
        return $_
    }

    if ($response.StatusCode -in @(200, 204)) {
        $ResponseContent = $response.Content | ConvertFrom-Json

        # Format the response as a list of company objects
        $Results = [System.Collections.ArrayList]::new()
        foreach ($Company in $ResponseContent.rows) {
            [void]$Results.Add(
                [PSCustomObject]@{
                    id          = $Company.id
                    Name        = $Company.cell[0]
                    dateCreated = $Company.cell[2]
                    dateUpdated = $Company.cell[3]
                }
            )
        }
    } else {
        return "Unable to collect Companies."
    }

    if ($Name) {
        $Results = $Results | Where-Object { $_.Name -eq $Name }
    }

    return $Results
}