Invoke-ZohoBooks Cmdlet
Searches and updates Zoho Books data.
Syntax
Invoke-ZohoBooks [parameters]
Remarks
The Invoke-ZohoBooks cmdlet allows you to use SQL statements to execute any SQL statement directly. Below is the syntax for a parameterized query:
$query = Invoke-ZohoBooks -Connection $connection -Query 'SELECT * FROM INVOICES WHERE CustomerName=@CustomerName' -Params @{'@CustomerName'='NewTech Industries'}This cmdlet is also useful for executing stored procedures. Use the EXEC keyword to call a stored procedure:
$query = Invoke-ZohoBooks -Connection $connection -Query 'EXEC ExpenseReceipt ExpenseId = @ExpenseId' -Params @{"1894853000000096001"}To pass multiple Params parameters, use a semicolon (;) as a delimiter. The code below outlines the structure of an EXEC command with two parameters (param1 and param2):
$query = Invoke-ZohoBooks -Connection $connection -Query 'EXEC MyStoredProc Input1=@param1, Input2=@param2' -Params @{'@param1' = 'value1'; '@param2' = 'value2'}