Select-ZohoBooks Cmdlet
Searches Zoho Books data.
Syntax
Select-ZohoBooks [parameters]
Remarks
The Select-ZohoBooks cmdlet allows you to use a syntax similar to SQL SELECT statements to search Zoho Books data.
$conn = Connect-ZohoBooks -InitiateOAuth "GETANDREFRESH" -OrganizationId "YourOrganizationId" Select-ZohoBooks -Connection $conn -Table "INVOICES" -Columns @("InvoiceId","InvoiceNumber") -Where "CustomerName='NewTech Industries'"