Cmdlets for Bullhorn CRM

Build 24.0.9060

Update-BullhornCRM Cmdlet

Parameters   Output Objects  

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")

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060