Public/Get-ZomentumCompany.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
function Get-ZomentumCompany { <# .SYNOPSIS Gets Your Root Company from the Zomentum API. .DESCRIPTION Retrieves Your Root Company from the Zomentum API - supports a variety of filtering parameters. .OUTPUTS A powershell object containing the response. #> $Company = Invoke-ZomentumRequest -method get -resource "companies" return $Company } |