lwhitelock/HuduAPI

Get-HuduCompanies by Nickname or Company ID Number

Closed this issue · 1 comments

I'd like to be able to Get-HuduCompanies (among other functions) by the Nickname or Company ID Number fields. We use these fields to reference clients in other systems such as RMM/PSA/network/etc.

image

Per Luke, can use the following:
get-huducompanies | where-object {$_.whatever -eq 'thing'}

Such as the following example:
$company = Get-HuduCompanies | where-object {$_.nickname -eq $mrkOrg.name}