Public/Set-HuduCompanyArchive.ps1

function Set-HuduCompanyArchive {
    Param (
        [Parameter(Mandatory=$true)]
        [Int]$Id,
        [Parameter(Mandatory=$true)]
        [Bool]$Archive
    )
    
    if ($Archive -eq $true){
        $Response = Invoke-HuduRequest -Method put -Resource "/api/v1/companies/$Id/archive"
    } else {
        $Response = Invoke-HuduRequest -Method put -Resource "/api/v1/companies/$Id/unarchive"
    }
    $Response
  }