Update-BullhornCRM Cmdlet
Updates Bullhorn CRM data.
Syntax
Update-BullhornCRM [parameters]
Remarks
The Update-BullhornCRM cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Bullhorn CRM data.
$conn = Connect-BullhornCRM -DataCenterCode "CLS33" -InitiateOAuth "GETANDREFRESH" Update-BullhornCRM -Connection $conn -Table "Candidate" -Columns @("CandidateName") -Values @("Jon Doe") -Id "6"The Where parameter can also be used to specify the primary key of the table:
Update-BullhornCRM -Connection $conn -Table "Candidate" -Columns @("CandidateName") -Values @("Jon Doe") -Where "Id = '6'"The primary key can also be passed to the cmdlet along the pipeline:
Select-BullhornCRM -Connection $conn -Table Candidate -Where "CandidateName = 'Bob'" | Update-BullhornCRM -Columns @("CandidateName") -Values @("Bob 2")