Remove-BullhornCRM Cmdlet
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