lwhitelock / HuduAPI

A powershell API for Hudu Documentation
MIT License
53 stars 45 forks source link

Get-HuduCompanies by Nickname or Company ID Number #9

Closed scubes13 closed 1 year ago

scubes13 commented 2 years ago

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

scubes13 commented 2 years ago

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}