Update-ZohoProjects Cmdlet
Updates Zoho Projects data.
Syntax
Update-ZohoProjects [parameters]
Remarks
The Update-ZohoProjects cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Zoho Projects data.
$conn = Connect-ZohoProjects Update-ZohoProjects -Connection $conn -Table "Portals" -Columns @("Name") -Values @("Jon Doe") -Id "6"The Where parameter can also be used to specify the primary key of the table:
Update-ZohoProjects -Connection $conn -Table "Portals" -Columns @("Name") -Values @("Jon Doe") -Where "Id = '6'"The primary key can also be passed to the cmdlet along the pipeline:
Select-ZohoProjects -Connection $conn -Table Portals -Where "Id = '123456'" | Update-ZohoProjects -Columns @("Id") -Values @("123456 2")