Cmdlets for Bullhorn CRM

Build 24.0.9060

Remove-BullhornCRM Cmdlet

Parameters   Output Objects  

Deletes Bullhorn CRM data.

Syntax

Remove-BullhornCRM [parameters]

Remarks

The Remove-BullhornCRM cmdlet allows you to use a syntax similar to SQL DELETE statements to delete Bullhorn CRM data.

$conn = Connect-BullhornCRM -DataCenterCode "CLS33" -InitiateOAuth "GETANDREFRESH"
Remove-BullhornCRM -Connection $conn -Table "Candidate" -Id "6"
The Where parameter can also be used to specify the primary key:
Remove-BullhornCRM -Connection $conn -Table "exTablePowershell;" -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'" | Remove-BullhornCRM

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