Skip to Content

Bullhorn CRM Connection Details

Introduction

Connector Version

This documentation is based on version 23.0.8803 of the connector.

Get Started

Bullhorn CRM Version Support

The connector leverages the Bullhorn CRM API to enable bidirectional access to Bullhorn CRM.

Establish a Connection

Connect to Bullhorn CRM

Begin by providing your Bullhorn CRM account credentials. Set DataCenterCode to the data center code that responds to your data center. Refer to the list here.

If you are uncertain about your data center code, codes like CLS2, CLS21, etc. are cluster IDs that are contained in a user's browser URL (address bar) once they are logged in.

Example: https://cls21.bullhornstaffing.com/BullhornSTAFFING/MainFrame.jsp?#no-ba... indicates that the logged in user is on CLS21.

Note

If you specify callback URL value that contains "/" character at the end, e.g., http://localhost:33333/ you must specify exactly the same value. It must match the callback URL you specify in your application settings.

Adding or removing any character of this parameter results in an error.

Authenticate to Bullhorn CRM (OAuth)

Bullhorn CRM uses the OAuth 2.0 authentication standard.

In all scenarios, to authenticate using OAuth, you must create and configure a custom OAuth application. See Creating a Custom OAuth App for more information.

Desktop Applications

Follow the steps below to authenticate with the credentials for a custom OAuth application.

Scenario 1: Verifier Code

Making any changes to your OAuth application (such as the CallbackURL) requires reaching out to Bullhorn CRM directly, which can be a time-consuming process. So, we highly recommended that you instead use an OAuthVerifier to connect. To obtain a verifier, you also need an OAuth Authorization URL.

Retrieving an OAuth Verifier Code

Construct your authorization URL as follows:
*https://**<authurlfor your data center>/oauth/authorize?client_id=<your OAuth client id>*&response_type=code

For example, if you had data center "CLS5", the authentication URL is https://auth.bullhornstaffing.com/oauth/authorize?client_id=your_client_id&response_type=code.

Please refer to the list here to determine the authentication URL for your data center.

Next, retrieve the OAuth verifier code:

  1. Open your authorization URL in a browser. Log in and grant permissions to the connector. You are then redirected to the callback URL, which contains the verifier code.
  2. Save the value of the verifier code.

Get and Refresh the OAuth Access Token

After setting the following, you are ready to connect:

  • OAuthVerifier: Set this to the OAuth Verifier code obtained previously.
  • DataCenterCode: Set this to the respective data center your account is connected with. Find the list of the data centers here. For example, CLS33.
  • OAuthClientId: Set this to the client ID assigned when you registered your application.
  • OAuthClientSecret: Set this to the client secret assigned when you registered your application.
  • InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.

When you connect the connector opens the OAuth endpoint in your default browser. Log in and grant permissions to the application. The connector then completes the OAuth process:

  1. Extracts the access token from the callback URL and authenticates requests.
  2. Obtains a new access token when the old one expires.
  3. Saves OAuth values in OAuthSettingsLocation. These stored values persist across connections.

Scenario 2: Custom CallbackURL

You also have the option of requesting a custom callback URL (for example, http://localhost:33333) from Bullhorn CRM. If you have been provided with a custom CallbackURL, you can set the following to connect to data:

  • CallbackURL: Set this to the custom callback URL provided by Bullhorn CRM.
  • DataCenterCode: Set this to the respective data center your account is connected with. Find the list of the data centers here. For example, CLS33.
  • OAuthClientId: Set this to the client ID assigned when you registered your application.
  • OAuthClientSecret: Set this to the client secret assigned when you registered your application.
  • InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.

The connector then completes the OAuth process:

  1. The process finalizes with the access token returned from the Bullhorn CRM API.
  2. Refreshes the access token when it expires.
  3. Saves OAuth values in OAuthSettingsLocation to be persisted across connections.

Contact Bullhorn

Considerations when Connecting to Bullhorn CRM

Unlike many other data sources, Bullhorn CRM doesn't allow users to create their own custom OAuth applications or edit their CallbackURL directly.

Instead, the user must contact Bullhorn CRM and request that they create/change the user's OAuth information on Bullhorn CRM's end.

If a user needs to change their CallbackURL, waiting for a new one from Bullhorn CRM may be a time-consuming process.

It is highly recommended that users consider using an OAuth verifier code to connect instead. See "Authenticating to Bullhorn CRM" for more details.

Create a Custom OAuth App

You must create a custom OAuth app to connect to Bullhorn CRM.

The only way to create an app is to contact the Bullhorn CRM support team. They will provide you with the application credentials (clientId and client secret). You can find more information about how to register here.

In addition, the CallbackURL or Redirect URI defaults to a page on bullhorn.com.

In order to set InitiateOAuth to GETANDREFRESH, you must contact Bullhorn CRM staff and request a separate CallbackURL.

If a separate Callback URL cannot be specified, the "code" parameter from the redirect page on Bullhorn CRM must be taken and passed as an input to either:

  • The Verifier input of GetOAuthAccessToken if executing it manually.
  • The connection property OAuthVerifier when setting InitiateOAuth to GETANDREFRESH.

Fine-Tuning Data Access

Fine Tuning Data Access

You can use the following properties to gain greater control over Bullhorn CRM API features and the strategies the connector uses to surface them:

  • IncludeCustomFields: Whether or not custom fields will be included. When off, performance will be higher, but the custom fields cannot be retrieved or modified.
  • IncludeCustomTables: Whether or not custom tables will be included. When off, performance will be higher, but the custom tables cannot be retrieved.
  • ListLayouts: A list of tables you want to list layouts for. For example: ListLayouts=Candidate,JobOrder;.
  • UseDefaultOrderBy: Indicates if a default order by should be applied when none is specified. This will prevent duplicate results, but will make large tables much more expensive to retrieve.
  • UseDisplayNames: Set this to true to use field labels for column names.
  • MaxThreads: Specifies the number of concurrent requests. Increase it to improve performance, especially when a table has many rows.

Important Notes

Configuration Files and Their Paths

  • All references to adding configuration files and their paths refer to files and locations on the Harmony Agent where the connector is installed. These paths are to be adjusted as appropriate depending on the agent and the operating system. If multiple agents are used in an agent group, identical files will be required on each agent.

Advanced Features

This section details a selection of advanced features of the Bullhorn CRM connector.

User Defined Views

The connector allows you to define virtual tables, called user defined views, whose contents are decided by a pre-configured query. These views are useful when you cannot directly control queries being issued to the drivers. See User Defined Views for an overview of creating and configuring custom views.

SSL Configuration

Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats; see the SSLServerCert property under "Connection String Options" for more information.

Proxy

To configure the connector using Private Agent proxy settings, select the Use Proxy Settings checkbox on the connection configuration screen.

Query Processing

The connector offloads as much of the SELECT statement processing as possible to Bullhorn CRM and then processes the rest of the query in memory (client-side).

User Defined Views

The Bullhorn CRM connector allows you to define a virtual table whose contents are decided by a pre-configured query. These are called User Defined Views, which are useful in situations where you cannot directly control the query being issued to the driver, e.g. when using the driver from Jitterbit. The User Defined Views can be used to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.

There are two ways to create user defined views:

  • Create a JSON-formatted configuration file defining the views you want.
  • DDL statements.

Define Views Using a Configuration File

User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This User Defined View configuration file is formatted as follows:

  • Each root element defines the name of a view.
  • Each root element contains a child element, called query, which contains the custom SQL query for the view.

For example:

{
    "MyView": {
        "query": "SELECT * FROM Candidate WHERE MyColumn = 'value'"
    },
    "MyView2": {
        "query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
    }
}

Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:

"UserDefinedViews", "C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json"

Define Views Using DDL Statements

The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.

Create a View

To create a new view using DDL statements, provide the view name and query as follows:

CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;

If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews connection property.

Alter a View

To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:

ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';

The view is then updated in the JSON configuration file.

Drop a View

To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.

DROP LOCAL VIEW [MyViewName]

This removes the view from the JSON configuration file. It can no longer be queried.

Schema for User Defined Views

User Defined Views are exposed in the UserViews schema by default. This is done to avoid the view's name clashing with an actual entity in the data model. You can change the name of the schema used for UserViews by setting the UserViewsSchemaName property.

Work with User Defined Views

For example, a SQL statement with a User Defined View called UserViews.RCustomers only lists customers in Raleigh:

SELECT * FROM Customers WHERE City = 'Raleigh';

An example of a query to the driver:

SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';

Resulting in the effective query to the source:

SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';

That is a very simple example of a query to a User Defined View that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.

SSL Configuration

Customize the SSL Configuration

By default, the connector attempts to negotiate SSL/TLS by checking the server's certificate against the system's trusted certificate store.

To specify another certificate, see the SSLServerCert property for the available formats to do so.

Data Model

Overview

This section shows the available API objects and provides more information on executing SQL to Bullhorn CRM APIs.

Key Features

  • The connector models Bullhorn CRM entities like candidates, client contacts, and job orders as relational tables, allowing you to write SQL to query Bullhorn CRM data.
  • Stored procedures allow you to execute operations to Bullhorn CRM.
  • Live connectivity to these objects means any changes to your Bullhorn CRM account are immediately reflected when using the connector.

Saved Searches

The connector exposes saved searches as separate views. These views will be named like 'SavedSearch_{Saved search name}'.

Layouts

The connector uses the ListLayouts property to determine what layouts to expose as separate views. This property is recommended because it will boost the performance on tables with too many columns, like Candidate. So you can use the desired layout view, instead of the original table, for a better performance.

The naming of these views is like '{original entity}{layout name}Layout'. For example, CandidateListRowLayout, is the view that corresponds to the ListRow layout of candidate entity.

Custom tables and custom columns

Bullhorn CRM can have custom entities and custom fields. If you want them to be listed as tables and columns respectively use the IncludeCustomTables and IncludeCustomFields properties. IncludeCustomTables is set to false by default while IncludeCustomFields is set to true.
Note that setting these properties to true may result on a slower performance.

Associations Tables

By default, the connector does not expose the Many-To-Many associations between different entities. In order to expose the Associations Tables, you will need to set the ExpandAssociations connection property to 'True'. This way, the connector exposes one associations table for every discovered 'To-Many' associations field on a Bullhorn CRM entity (ex. CandidateToPrimarySkillsAssociations, JobOrderTocategoriesAssociations, WorkersCompensationToRatesAssociations, etc.).

For a guide on how to Read, Create and Delete Associations check PrimaryEntityToAssociatedEntityAssociations.

Note

On enabling ExpandAssociations, the connector will send several additional Metadata API calls to discover and list all Associations tables for each detected 'To-Many' associations field.

Supported operators

The connector offloads as much of the filtering as possible to Bullhorn CRM API, in order to have a better performance. The Bullhorn CRM supports two query languages, Lucene and JPQL.

Lucene
Only Candidate and Note entities support the Lucene filtering for now. The supported operators on these tables are: 'AND', 'OR', '=', 'IN', '>', '>=', '<', '<='. Note that '>', '>=', '<', '<=' are only supported for datetime columns.

Some query examples that are handled server side are:

SELECT * FROM Candidate WHERE Id = '109989'
SELECT * FROM Candidate WHERE Id IN (109989, 110011)
SELECT * FROM Candidate WHERE Id IN (109989, 110011) AND DateAdded > '2018-06-11 11:40:17.577'
SELECT * FROM Candidate WHERE DateAdded < '2019-12-15 14:31:01'
SELECT * FROM Candidate WHERE DateAdded >= '2019-12-16 14:31:01' AND (AddressCity = 'southfield' OR AddressState = 'indiana')

JPQL
All the tables except Candidate and Note support JPQL filtering. The supported operators on these tables are: 'AND', 'OR', 'NOT', '=', '!=', '>', '>=', '<', '<=', 'IS', 'IS NOT', 'IN', 'NOT IN'.

Some query examples that are handled server side are:

SELECT * FROM Appointment WHERE Id IN ('83409', '83404', '83398')
SELECT * FROM Appointment WHERE Id IN ('83409', '83404', '83398') AND communicationMethod = 'phone'
SELECT * FROM Appointment WHERE CandidateId IS NOT NULL AND StartDate > '2019-12-17 12:01:00.000' ORDER BY Id, CandidateId
SELECT * FROM Appointment WHERE (CandidateId IS NOT NULL AND StartDate >= '2019-12-17 12:01:00.000') OR Description IS NOT NULL
SELECT * FROM Appointment WHERE (CandidateId NOT IN (19624,19622,19621,19620,19618) AND StartDate > '2019-12-17 12:01:00.000') OR Location != 'Louisville, KY'

Insert, Update, Delete You can perform write operations using Insert, Update, Delete SQL statements. Some query examples:

INSERT INTO Task (Subject, Description) VALUES ('Follow up - Billy Joel', 'Follow up the candidate Billy Joel.')
UPDATE Task SET Description = 'An updated description here.' WHERE Id = 84905
DELETE FROM Task WHERE ID = 84905

GETDELETED You can get the IDs of the deleted records on several entities (Not all entities support deleted records).

GETDELETED FROM Candidate
GETDELETED FROM Appointment
GETDELETED FROM Task

Tables

The connector models the data in Bullhorn CRM as a list of tables in a relational database that can be queried using standard SQL statements.

Bullhorn CRM Connector Tables

Name Description
ActivityGoal Create, update, delete and query data of 'ActivityGoal' entity in BullhornCRM system.
ActivityGoalConfiguration Create, update, delete and query data of 'ActivityGoalConfiguration' entity in BullhornCRM system.
ActivityGoalTarget Create, update, delete and query data of 'ActivityGoalTarget' entity in BullhornCRM system.
Appointment Create, update, delete and query data of 'Appointment' entity in BullhornCRM system.
AppointmentAttendee Create, update, delete and query data of 'AppointmentAttendee' entity in BullhornCRM system.
AppointmentEditHistory Create, update, delete and query data of 'AppointmentEditHistory' entity in BullhornCRM system.
AppointmentEditHistoryFieldChange Create, update, delete and query data of 'AppointmentEditHistoryFieldChange' entity in BullhornCRM system.
BillableChargeEditHistory Create, update, delete and query data of 'BillableChargeEditHistory' entity in BullhornCRM system.
BillableChargeEditHistoryFieldChange Create, update, delete and query data of 'BillableChargeEditHistoryFieldChange' entity in BullhornCRM system.
Branch Create, update, delete and query data of 'Branch' entity in BullhornCRM system.
BusinessSector Create, update, delete and query data of 'BusinessSector' entity in BullhornCRM system.
Candidate Create, update, delete and query data of 'Candidate' entity in BullhornCRM system.
CandidateCertification Create, update, delete and query data of 'CandidateCertification' entity in BullhornCRM system.
CandidateCertificationEditHistory Create, update, delete and query data of 'CandidateCertificationEditHistory' entity in BullhornCRM system.
CandidateCertificationEditHistoryFieldChange Create, update, delete and query data of 'CandidateCertificationEditHistoryFieldChange' entity in BullhornCRM system.
CandidateCertificationRequirement Create, update, delete and query data of 'CandidateCertificationRequirement' entity in BullhornCRM system.
CandidateCertificationRequirementEditHistory Create, update, delete and query data of 'CandidateCertificationRequirementEditHistory' entity in BullhornCRM system.
CandidateCertificationRequirementEditHistoryFieldChange Create, update, delete and query data of 'CandidateCertificationRequirementEditHistoryFieldChange' entity in BullhornCRM system.
CandidateEducation Create, update, delete and query data of 'CandidateEducation' entity in BullhornCRM system.
CandidateFileAttachment Create, update, delete and query data of 'CandidateFileAttachment' entity in BullhornCRM system.
CandidateHistory Create, update, delete and query data of 'CandidateHistory' entity in BullhornCRM system.
CandidateReference Create, update, delete and query data of 'CandidateReference' entity in BullhornCRM system.
CandidateReferenceQuestion Create, update, delete and query data of 'CandidateReferenceQuestion' entity in BullhornCRM system.
CandidateReferenceResponse Create, update, delete and query data of 'CandidateReferenceResponse' entity in BullhornCRM system.
CandidateSource Create, update, delete and query data of 'CandidateSource' entity in BullhornCRM system.
CandidateWorkHistory Create, update, delete and query data of 'CandidateWorkHistory' entity in BullhornCRM system.
Category Create, update, delete and query data of 'Category' entity in BullhornCRM system.
Certification Create, update, delete and query data of 'Certification' entity in BullhornCRM system.
CertificationGroup Create, update, delete and query data of 'CertificationGroup' entity in BullhornCRM system.
CertificationRequirement Create, update, delete and query data of 'CertificationRequirement' entity in BullhornCRM system.
ClientContact Create, update, delete and query data of 'ClientContact' entity in BullhornCRM system.
ClientContact1 Create, update, delete and query data of 'ClientContact1' entity in BullhornCRM system.
ClientContact2 Create, update, delete and query data of 'ClientContact2' entity in BullhornCRM system.
ClientContact3 Create, update, delete and query data of 'ClientContact3' entity in BullhornCRM system.
ClientContact4 Create, update, delete and query data of 'ClientContact4' entity in BullhornCRM system.
ClientContact5 Create, update, delete and query data of 'ClientContact5' entity in BullhornCRM system.
ClientContactFileAttachment Create, update, delete and query data of 'ClientContactFileAttachment' entity in BullhornCRM system.
ClientContactHistory Create, update, delete and query data of 'ClientContactHistory' entity in BullhornCRM system.
ClientCorporation Create, update, delete and query data of 'ClientCorporation' entity in BullhornCRM system.
ClientCorporation1 Create, update, delete and query data of 'ClientCorporation1' entity in BullhornCRM system.
ClientCorporation2 Create, update, delete and query data of 'ClientCorporation2' entity in BullhornCRM system.
ClientCorporation3 Create, update, delete and query data of 'ClientCorporation3' entity in BullhornCRM system.
ClientCorporation4 Create, update, delete and query data of 'ClientCorporation4' entity in BullhornCRM system.
ClientCorporation5 Create, update, delete and query data of 'ClientCorporation5' entity in BullhornCRM system.
ClientCorporationAppointment Create, update, delete and query data of 'ClientCorporationAppointment' entity in BullhornCRM system.
ClientCorporationCertification Create, update, delete and query data of 'ClientCorporationCertification' entity in BullhornCRM system.
ClientCorporationEditHistory Create, update, delete and query data of 'ClientCorporationEditHistory' entity in BullhornCRM system.
ClientCorporationEditHistoryFieldChange Create, update, delete and query data of 'ClientCorporationEditHistoryFieldChange' entity in BullhornCRM system.
ClientCorporationFileAttachment Create, update, delete and query data of 'ClientCorporationFileAttachment' entity in BullhornCRM system.
ClientCorporationHistory Create, update, delete and query data of 'ClientCorporationHistory' entity in BullhornCRM system.
ClientCorporationNote Create, update, delete and query data of 'ClientCorporationNote' entity in BullhornCRM system.
ClientCorporationTask Create, update, delete and query data of 'ClientCorporationTask' entity in BullhornCRM system.
CorporateUser Create, update, delete and query data of 'CorporateUser' entity in BullhornCRM system.
CorporationDepartment Create, update, delete and query data of 'CorporationDepartment' entity in BullhornCRM system.
Country Create, update, delete and query data of 'Country' entity in BullhornCRM system.
Department Create, update, delete and query data of 'Department' entity in BullhornCRM system.
EntityFieldTypeLookup Create, update, delete and query data of 'EntityFieldTypeLookup' entity in BullhornCRM system.
GoalTarget Create, update, delete and query data of 'GoalTarget' entity in BullhornCRM system.
HousingComplex Create, update, delete and query data of 'HousingComplex' entity in BullhornCRM system.
HousingComplexAmenity Create, update, delete and query data of 'HousingComplexAmenity' entity in BullhornCRM system.
HousingComplexFurnitureDelivery Create, update, delete and query data of 'HousingComplexFurnitureDelivery' entity in BullhornCRM system.
HousingComplexUnit Create, update, delete and query data of 'HousingComplexUnit' entity in BullhornCRM system.
HousingComplexUtilityAccount Create, update, delete and query data of 'HousingComplexUtilityAccount' entity in BullhornCRM system.
JobBoardPost Create, update, delete and query data of 'JobBoardPost' entity in BullhornCRM system.
JobOrder Create, update, delete and query data of 'JobOrder' entity in BullhornCRM system.
JobOrder1 Create, update, delete and query data of 'JobOrder1' entity in BullhornCRM system.
JobOrder2 Create, update, delete and query data of 'JobOrder2' entity in BullhornCRM system.
JobOrder3 Create, update, delete and query data of 'JobOrder3' entity in BullhornCRM system.
JobOrder4 Create, update, delete and query data of 'JobOrder4' entity in BullhornCRM system.
JobOrder5 Create, update, delete and query data of 'JobOrder5' entity in BullhornCRM system.
JobOrderEditHistory Create, update, delete and query data of 'JobOrderEditHistory' entity in BullhornCRM system.
JobOrderEditHistoryFieldChange Create, update, delete and query data of 'JobOrderEditHistoryFieldChange' entity in BullhornCRM system.
JobOrderFileAttachment Create, update, delete and query data of 'JobOrderFileAttachment' entity in BullhornCRM system.
JobOrderHistory Create, update, delete and query data of 'JobOrderHistory' entity in BullhornCRM system.
JobOrderTemplate Create, update, delete and query data of 'JobOrderTemplate' entity in BullhornCRM system.
JobSubmission Create, update, delete and query data of 'JobSubmission' entity in BullhornCRM system.
JobSubmissionCertificationRequirement Create, update, delete and query data of 'JobSubmissionCertificationRequirement' entity in BullhornCRM system.
JobSubmissionCertificationRequirementEditHistory Create, update, delete and query data of 'JobSubmissionCertificationRequirementEditHistory' entity in BullhornCRM system.
JobSubmissionCertificationRequirementEditHistoryFieldChange Create, update, delete and query data of 'JobSubmissionCertificationRequirementEditHistoryFieldChange' entity in BullhornCRM system.
JobSubmissionEditHistory Create, update, delete and query data of 'JobSubmissionEditHistory' entity in BullhornCRM system.
JobSubmissionEditHistoryFieldChange Create, update, delete and query data of 'JobSubmissionEditHistoryFieldChange' entity in BullhornCRM system.
JobSubmissionHistory Create, update, delete and query data of 'JobSubmissionHistory' entity in BullhornCRM system.
Location Create, update, delete and query data of 'Location' entity in BullhornCRM system.
LocationEditHistory Create, update, delete and query data of 'LocationEditHistory' entity in BullhornCRM system.
LocationEditHistoryFieldChange Create, update, delete and query data of 'LocationEditHistoryFieldChange' entity in BullhornCRM system.
LocationEffectiveDateChange Create, update, delete and query data of 'LocationEffectiveDateChange' entity in BullhornCRM system.
LocationVersion Create, update, delete and query data of 'LocationVersion' entity in BullhornCRM system.
Note Create, update, delete and query data of 'Note' entity in BullhornCRM system.
NoteEntity Create, update, delete and query data of 'NoteEntity' entity in BullhornCRM system.
Opportunity Create, update, delete and query data of 'Opportunity' entity in BullhornCRM system.
OpportunityEditHistory Create, update, delete and query data of 'OpportunityEditHistory' entity in BullhornCRM system.
OpportunityEditHistoryFieldChange Create, update, delete and query data of 'OpportunityEditHistoryFieldChange' entity in BullhornCRM system.
OpportunityFileAttachment Create, update, delete and query data of 'OpportunityFileAttachment' entity in BullhornCRM system.
PayableChargeEditHistory Create, update, delete and query data of 'PayableChargeEditHistory' entity in BullhornCRM system.
PayableChargeEditHistoryFieldChange Create, update, delete and query data of 'PayableChargeEditHistoryFieldChange' entity in BullhornCRM system.
Person Create, update, delete and query data of 'Person' entity in BullhornCRM system.
Placement Create, update, delete and query data of 'Placement' entity in BullhornCRM system.
Placement1 Create, update, delete and query data of 'Placement1' entity in BullhornCRM system.
Placement2 Create, update, delete and query data of 'Placement2' entity in BullhornCRM system.
Placement3 Create, update, delete and query data of 'Placement3' entity in BullhornCRM system.
Placement4 Create, update, delete and query data of 'Placement4' entity in BullhornCRM system.
Placement5 Create, update, delete and query data of 'Placement5' entity in BullhornCRM system.
PlacementCertification Create, update, delete and query data of 'PlacementCertification' entity in BullhornCRM system.
PlacementCertificationEditHistory Create, update, delete and query data of 'PlacementCertificationEditHistory' entity in BullhornCRM system.
PlacementCertificationEditHistoryFieldChange Create, update, delete and query data of 'PlacementCertificationEditHistoryFieldChange' entity in BullhornCRM system.
PlacementChangeRequest Create, update, delete and query data of 'PlacementChangeRequest' entity in BullhornCRM system.
PlacementChangeRequestEditHistory Create, update, delete and query data of 'PlacementChangeRequestEditHistory' entity in BullhornCRM system.
PlacementChangeRequestEditHistoryFieldChange Create, update, delete and query data of 'PlacementChangeRequestEditHistoryFieldChange' entity in BullhornCRM system.
PlacementCommission Create, update, delete and query data of 'PlacementCommission' entity in BullhornCRM system.
PlacementCommissionEditHistory Create, update, delete and query data of 'PlacementCommissionEditHistory' entity in BullhornCRM system.
PlacementCommissionEditHistoryFieldChange Create, update, delete and query data of 'PlacementCommissionEditHistoryFieldChange' entity in BullhornCRM system.
PlacementEditHistory Create, update, delete and query data of 'PlacementEditHistory' entity in BullhornCRM system.
PlacementEditHistoryFieldChange Create, update, delete and query data of 'PlacementEditHistoryFieldChange' entity in BullhornCRM system.
PlacementFileAttachment Create, update, delete and query data of 'PlacementFileAttachment' entity in BullhornCRM system.
PlacementRateCard Create, update, delete and query data of 'PlacementRateCard' entity in BullhornCRM system.
PlacementRateCardLine Create, update, delete and query data of 'PlacementRateCardLine' entity in BullhornCRM system.
PlacementRateCardLineGroup Create, update, delete and query data of 'PlacementRateCardLineGroup' entity in BullhornCRM system.
PrimaryEntityToAssociatedEntityAssociations Create, delete and query the Id-s of associated records between a PrimaryEntity and an AssociatedEntity entities in BullhornCRM system.
Report Create, update, delete and query data of 'Report' entity in BullhornCRM system.
SalesQuota Create, update, delete and query data of 'SalesQuota' entity in BullhornCRM system.
SalesTaxRateEditHistory Create, update, delete and query data of 'SalesTaxRateEditHistory' entity in BullhornCRM system.
SalesTaxRateEditHistoryFieldChange Create, update, delete and query data of 'SalesTaxRateEditHistoryFieldChange' entity in BullhornCRM system.
SalesTaxRateEffectiveDateChange Create, update, delete and query data of 'SalesTaxRateEffectiveDateChange' entity in BullhornCRM system.
Sendout Create, update, delete and query data of 'Sendout' entity in BullhornCRM system.
Shift Create, update, delete and query data of 'Shift' entity in BullhornCRM system.
Skill Create, update, delete and query data of 'Skill' entity in BullhornCRM system.
Specialty Create, update, delete and query data of 'Specialty' entity in BullhornCRM system.
State Create, update, delete and query data of 'State' entity in BullhornCRM system.
Task Create, update, delete and query data of 'Task' entity in BullhornCRM system.
TaskEditHistory Create, update, delete and query data of 'TaskEditHistory' entity in BullhornCRM system.
TaskEditHistoryFieldChange Create, update, delete and query data of 'TaskEditHistoryFieldChange' entity in BullhornCRM system.
Tearsheet Create, update, delete and query data of 'Tearsheet' entity in BullhornCRM system.
TearsheetMember Create, update, delete and query data of 'TearsheetMember' entity in BullhornCRM system.
TearsheetRecipient Create, update, delete and query data of 'TearsheetRecipient' entity in BullhornCRM system.
TimeUnit Create, update, delete and query data of 'TimeUnit' entity in BullhornCRM system.
UserEditHistory Create, update, delete and query data of 'UserEditHistory' entity in BullhornCRM system.
UserEditHistoryFieldChange Create, update, delete and query data of 'UserEditHistoryFieldChange' entity in BullhornCRM system.
UserHousingComplexUnit Create, update, delete and query data of 'UserHousingComplexUnit' entity in BullhornCRM system.
UserPulseCallLog Create, update, delete and query data of 'UserPulseCallLog' entity in BullhornCRM system.
UserPulseCallLogContact Create, update, delete and query data of 'UserPulseCallLogContact' entity in BullhornCRM system.
UserType Create, update, delete and query data of 'UserType' entity in BullhornCRM system.
WorkersCompensation Create, update, delete and query data of 'WorkersCompensation' entity in BullhornCRM system.
WorkersCompensationRate Create, update, delete and query data of 'WorkersCompensationRate' entity in BullhornCRM system.
ZipCodeGis Create, update, delete and query data of 'ZipCodeGis' entity in BullhornCRM system.

ActivityGoal

Create, update, delete and query data of 'ActivityGoal' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ActivityGoal.
ActivityType String False The ActivityType of the ActivityGoal.
Actual Int False The Actual of the ActivityGoal.
DepartmentId Int False The DepartmentId of the ActivityGoal.
EndDate Date False The EndDate of the ActivityGoal.
Goal Int False The Goal of the ActivityGoal.
PercentAttained Int False The PercentAttained of the ActivityGoal.
PeriodName String False The PeriodName of the ActivityGoal.
StartDate Date False The StartDate of the ActivityGoal.
UserId Int False The UserId of the ActivityGoal.

ActivityGoalConfiguration

Create, update, delete and query data of 'ActivityGoalConfiguration' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ActivityGoalConfiguration.
CodeIdentifier String False The CodeIdentifier of the ActivityGoalConfiguration.
DateLastModified Datetime False The DateLastModified of the ActivityGoalConfiguration.
Description String False The Description of the ActivityGoalConfiguration.
GoalPeriodId Int False The GoalPeriodId of the ActivityGoalConfiguration.
GoalTypeId Int False The GoalTypeId of the ActivityGoalConfiguration.
Name String False The Name of the ActivityGoalConfiguration.
IsDeleted Bool False The IsDeleted of the ActivityGoalConfiguration.

ActivityGoalTarget

Create, update, delete and query data of 'ActivityGoalTarget' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ActivityGoalTarget.
ActivityGoalConfigurationId Int False The ActivityGoalConfigurationId of the ActivityGoalTarget.
Goal Int False The Goal of the ActivityGoalTarget.
PeriodName String False The PeriodName of the ActivityGoalTarget.
UserId Int False The UserId of the ActivityGoalTarget.

Appointment

Create, update, delete and query data of 'Appointment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Appointment.
AppointmentUUID String False The AppointmentUUID of the Appointment.
CandidateId Int False The CandidateId of the Appointment.
ClientContactId Int False The ClientContactId of the Appointment.
CommunicationMethod String False The CommunicationMethod of the Appointment.
DateAdded Datetime False The DateAdded of the Appointment.
DateLastModified Datetime False The DateLastModified of the Appointment.
Description String False The Description of the Appointment.
EndDate Datetime False The EndDate of the Appointment.
IsAllDay Bool False The IsAllDay of the Appointment.
JobId Int False The JobId of the Appointment.
JobSubmissionId Int False The JobSubmissionId of the Appointment.
Location String False The Location of the Appointment.
MigrateGUID String False The MigrateGUID of the Appointment.
OwnerId Int False The OwnerId of the Appointment.
ParentAppointmentId Int False The ParentAppointmentId of the Appointment.
PlacementId Int False The PlacementId of the Appointment.
RecurrenceDayBits Int False The RecurrenceDayBits of the Appointment.
RecurrenceFrequency Int False The RecurrenceFrequency of the Appointment.
RecurrenceMax Int False The RecurrenceMax of the Appointment.
RecurrenceMonthBits Int False The RecurrenceMonthBits of the Appointment.
RecurrenceStyle String False The RecurrenceStyle of the Appointment.
RecurrenceType String False The RecurrenceType of the Appointment.
Reminder Int False The Reminder of the Appointment.
ShowTimeAs String False The ShowTimeAs of the Appointment.
StartDate Datetime False The StartDate of the Appointment.
Subject String False The Subject of the Appointment.
TimeZoneID String False The TimeZoneID of the Appointment.
Type String False The Type of the Appointment.
Visibility Bool False The Visibility of the Appointment.
IsDeleted Bool False The IsDeleted of the Appointment.

AppointmentAttendee

Create, update, delete and query data of 'AppointmentAttendee' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the AppointmentAttendee.
AcceptanceStatus Int False The AcceptanceStatus of the AppointmentAttendee.
AppointmentId Int False The AppointmentId of the AppointmentAttendee.
AttendeeId Int False The AttendeeId of the AppointmentAttendee.
MigrateGUID String False The MigrateGUID of the AppointmentAttendee.

AppointmentEditHistory

Create, update, delete and query data of 'AppointmentEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the AppointmentEditHistory.
AuditTrail String False The AuditTrail of the AppointmentEditHistory.
DateAdded Datetime False The DateAdded of the AppointmentEditHistory.
MigrateGUID String False The MigrateGUID of the AppointmentEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the AppointmentEditHistory.
TargetEntityId Int False The TargetEntityId of the AppointmentEditHistory.
TransactionID String False The TransactionID of the AppointmentEditHistory.

AppointmentEditHistoryFieldChange

Create, update, delete and query data of 'AppointmentEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the AppointmentEditHistoryFieldChange.
ColumnName String False The ColumnName of the AppointmentEditHistoryFieldChange.
Display String False The Display of the AppointmentEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the AppointmentEditHistoryFieldChange.
NewValue String False The NewValue of the AppointmentEditHistoryFieldChange.
OldValue String False The OldValue of the AppointmentEditHistoryFieldChange.

BillableChargeEditHistory

Create, update, delete and query data of 'BillableChargeEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the BillableChargeEditHistory.
AuditTrail String False The AuditTrail of the BillableChargeEditHistory.
DateAdded Datetime False The DateAdded of the BillableChargeEditHistory.
MigrateGUID String False The MigrateGUID of the BillableChargeEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the BillableChargeEditHistory.
TransactionID String False The TransactionID of the BillableChargeEditHistory.

BillableChargeEditHistoryFieldChange

Create, update, delete and query data of 'BillableChargeEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the BillableChargeEditHistoryFieldChange.
ColumnName String False The ColumnName of the BillableChargeEditHistoryFieldChange.
Display String False The Display of the BillableChargeEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the BillableChargeEditHistoryFieldChange.
NewValue String False The NewValue of the BillableChargeEditHistoryFieldChange.
OldValue String False The OldValue of the BillableChargeEditHistoryFieldChange.

Branch

Create, update, delete and query data of 'Branch' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Branch.
DateAdded Datetime False The DateAdded of the Branch.
ExternalID String False The ExternalID of the Branch.
Name String False The Name of the Branch.
ParentBranchId Int False The ParentBranchId of the Branch.
IsDeleted Bool False The IsDeleted of the Branch.

BusinessSector

Create, update, delete and query data of 'BusinessSector' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the BusinessSector.
DateAdded Datetime False The DateAdded of the BusinessSector.
Name String False The Name of the BusinessSector.

Candidate

Create, update, delete and query data of 'Candidate' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Candidate.
AdditonalskillsResumeparser String False The AdditonalskillsResumeparser of the Candidate.
AddressAddress String False The AddressAddress of the Candidate.
AddressAddress2 String False The AddressAddress2 of the Candidate.
AddressCity String False The AddressCity of the Candidate.
AddressCountry Int False The AddressCountry of the Candidate.
AddresscountryCode String False The AddresscountryCode of the Candidate.
AddresscountryName String False The AddresscountryName of the Candidate.
AddressState String False The AddressState of the Candidate.
AddressZip String False The AddressZip of the Candidate.
Allowcandidatetoeditprofile Bool False The Allowcandidatetoeditprofile of the Candidate.
AuthorizedtoworkintheUS Bool False The AuthorizedtoworkintheUS of the Candidate.
AvailableUntil Datetime False The AvailableUntil of the Candidate.
Birthday Datetime False The Birthday of the Candidate.
BranchID Int False The BranchID of the Candidate.
CandidateName String False The CandidateName of the Candidate.
CandidateName2 String False The CandidateName2 of the Candidate.
CandidateName3 String False The CandidateName3 of the Candidate.
CandidateName4 String False The CandidateName4 of the Candidate.
CandidateName5 String False The CandidateName5 of the Candidate.
CanEnterTime Bool False The CanEnterTime of the Candidate.
CategoryId Int False The CategoryId of the Candidate.
Certifications String False The Certifications of the Candidate.
CurrentCompany String False The CurrentCompany of the Candidate.
CurrentPayRate String False The CurrentPayRate of the Candidate.
CurrentSalary String False The CurrentSalary of the Candidate.
DateAdded Datetime False The DateAdded of the Candidate.
DateAvailable Datetime False The DateAvailable of the Candidate.
DateI9Expiration Datetime False The DateI9Expiration of the Candidate.
DateLastModified Datetime False The DateLastModified of the Candidate.
DateNextCall Datetime False The DateNextCall of the Candidate.
DayRate String False The DayRate of the Candidate.
DayRateLow String False The DayRateLow of the Candidate.
Degrees String False The Degrees of the Candidate.
DesiredLocations String False The DesiredLocations of the Candidate.
DesiredPayRate String False The DesiredPayRate of the Candidate.
DesiredSalary String False The DesiredSalary of the Candidate.
Disability String False The Disability of the Candidate.
DistancewillingtotravelMiles Int False The DistancewillingtotravelMiles of the Candidate.
EducationLevel String False The EducationLevel of the Candidate.
Email1 String False The Email1 of the Candidate.
Email2 String False The Email2 of the Candidate.
Email3 String False The Email3 of the Candidate.
EmployeeType String False The EmployeeType of the Candidate.
EmploymentPreference String False The EmploymentPreference of the Candidate.
Ethnicity String False The Ethnicity of the Candidate.
ExternalID String False The ExternalID of the Candidate.
Fax String False The Fax of the Candidate.
Fax2 String False The Fax2 of the Candidate.
Fax3 String False The Fax3 of the Candidate.
FederalAddtionalWitholdingsAmount String False The FederalAddtionalWitholdingsAmount of the Candidate.
FederalExemptions Int False The FederalExemptions of the Candidate.
FederalextrawithholdingamountForeachpayperiod String False The FederalextrawithholdingamountForeachpayperiod of the Candidate.
FederalFilingStatus String False The FederalFilingStatus of the Candidate.
Gender String False The Gender of the Candidate.
GeneralCandidateComments String False The GeneralCandidateComments of the Candidate.
HomePhone String False The HomePhone of the Candidate.
I9OnFile Int False The I9OnFile of the Candidate.
IsAnonymized Bool False The IsAnonymized of the Candidate.
IsDaylightSavings Bool False The IsDaylightSavings of the Candidate.
IsExempt Bool False The IsExempt of the Candidate.
IsLockedOut Bool False The IsLockedOut of the Candidate.
LastNote Datetime False The LastNote of the Candidate.
LeadTypeId Int False The LeadTypeId of the Candidate.
LinkedPersonId Int False The LinkedPersonId of the Candidate.
LocalAddtionalWitholdingsAmount String False The LocalAddtionalWitholdingsAmount of the Candidate.
LocalExemptions Int False The LocalExemptions of the Candidate.
LocalFilingStatus String False The LocalFilingStatus of the Candidate.
LocalTaxCode String False The LocalTaxCode of the Candidate.
MasterUserID Int False The MasterUserID of the Candidate.
MigrateGUID String False The MigrateGUID of the Candidate.
MobilePhone String False The MobilePhone of the Candidate.
Name String False The Name of the Candidate.
Nickname String False The Nickname of the Candidate.
NumberofCategories Int False The NumberofCategories of the Candidate.
NumberofOwners Int False The NumberofOwners of the Candidate.
OptedOut Bool False The OptedOut of the Candidate.
OtherDeductionsAmount String False The OtherDeductionsAmount of the Candidate.
OtherIncomeAmount String False The OtherIncomeAmount of the Candidate.
OtherPhone String False The OtherPhone of the Candidate.
OwnershipId Int False The OwnershipId of the Candidate.
Pager String False The Pager of the Candidate.
PaperWorkOnFile String False The PaperWorkOnFile of the Candidate.
Password String False The Password of the Candidate.
PersonalURL String False The PersonalURL of the Candidate.
PersonSubtype String False The PersonSubtype of the Candidate.
Phone3 String False The Phone3 of the Candidate.
PreferredContact String False The PreferredContact of the Candidate.
RecentEmployers String False The RecentEmployers of the Candidate.
ReferredbyOther String False The ReferredbyOther of the Candidate.
ReferredById Int False The ReferredById of the Candidate.
Resume String False The Resume of the Candidate.
SecondaryAddressAddress String False The SecondaryAddressAddress of the Candidate.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the Candidate.
SecondaryAddressCity String False The SecondaryAddressCity of the Candidate.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the Candidate.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the Candidate.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the Candidate.
SecondaryAddressState String False The SecondaryAddressState of the Candidate.
SecondaryAddressZip String False The SecondaryAddressZip of the Candidate.
Source String False The Source of the Candidate.
SSN String False The SSN of the Candidate.
StateAddtionalWitholdingsAmount String False The StateAddtionalWitholdingsAmount of the Candidate.
StateExemptions Int False The StateExemptions of the Candidate.
StateFilingStatus String False The StateFilingStatus of the Candidate.
Status String False The Status of the Candidate.
TaxID String False The TaxID of the Candidate.
TaxState String False The TaxState of the Candidate.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the Candidate.
Title String False The Title of the Candidate.
TotalDependentClaimAmount String False The TotalDependentClaimAmount of the Candidate.
TravelMethod String False The TravelMethod of the Candidate.
Twojobs Bool False The Twojobs of the Candidate.
Type String False The Type of the Candidate.
UserDateAdded Datetime False The UserDateAdded of the Candidate.
Username String False The Username of the Candidate.
UserTypeId Int False The UserTypeId of the Candidate.
Veteran String False The Veteran of the Candidate.
WillingtoRelocate Bool False The WillingtoRelocate of the Candidate.
WorkPhone String False The WorkPhone of the Candidate.
YearsExperience Int False The YearsExperience of the Candidate.
IsDeleted Bool False The IsDeleted of the Candidate.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateCertification

Create, update, delete and query data of 'CandidateCertification' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateCertification.
BoardCertification String False The BoardCertification of the CandidateCertification.
CandidateId Int False The CandidateId of the CandidateCertification.
Comments String False The Comments of the CandidateCertification.
Compact Int False The Compact of the CandidateCertification.
Credential String False The Credential of the CandidateCertification.
DateCertified Datetime False The DateCertified of the CandidateCertification.
DateLastModified Datetime False The DateLastModified of the CandidateCertification.
DisplayStatus String False The DisplayStatus of the CandidateCertification.
ExpirationDate Datetime False The ExpirationDate of the CandidateCertification.
IsComplete Bool False The IsComplete of the CandidateCertification.
IssuingAuthority String False The IssuingAuthority of the CandidateCertification.
LicenseNumber String False The LicenseNumber of the CandidateCertification.
LicenseType String False The LicenseType of the CandidateCertification.
Locations String False The Locations of the CandidateCertification.
ModifyingUserId Int False The ModifyingUserId of the CandidateCertification.
OnFile Int False The OnFile of the CandidateCertification.
RequirementTypeId Int False The RequirementTypeId of the CandidateCertification.
Results String False The Results of the CandidateCertification.
Status String False The Status of the CandidateCertification.
IsDeleted Bool False The IsDeleted of the CandidateCertification.

CandidateCertificationEditHistory

Create, update, delete and query data of 'CandidateCertificationEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateCertificationEditHistory.
AuditTrail String False The AuditTrail of the CandidateCertificationEditHistory.
DateAdded Datetime False The DateAdded of the CandidateCertificationEditHistory.
MigrateGUID String False The MigrateGUID of the CandidateCertificationEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the CandidateCertificationEditHistory.
TargetEntityId Int False The TargetEntityId of the CandidateCertificationEditHistory.
TransactionID String False The TransactionID of the CandidateCertificationEditHistory.

CandidateCertificationEditHistoryFieldChange

Create, update, delete and query data of 'CandidateCertificationEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateCertificationEditHistoryFieldChange.
ColumnName String False The ColumnName of the CandidateCertificationEditHistoryFieldChange.
Display String False The Display of the CandidateCertificationEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the CandidateCertificationEditHistoryFieldChange.
NewValue String False The NewValue of the CandidateCertificationEditHistoryFieldChange.
OldValue String False The OldValue of the CandidateCertificationEditHistoryFieldChange.

CandidateCertificationRequirement

Create, update, delete and query data of 'CandidateCertificationRequirement' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateCertificationRequirement.
CandidateCredentialId Int False The CandidateCredentialId of the CandidateCertificationRequirement.
CandidateCredentialName String False The CandidateCredentialName of the CandidateCertificationRequirement.
CandidateCredentialStatus String False The CandidateCredentialStatus of the CandidateCertificationRequirement.
CandidateId Int False The CandidateId of the CandidateCertificationRequirement.
CertificationId Int False The CertificationId of the CandidateCertificationRequirement.
DateAdded Datetime False The DateAdded of the CandidateCertificationRequirement.
ExpirationDate Datetime False The ExpirationDate of the CandidateCertificationRequirement.
MatchingCredentialCount Int False The MatchingCredentialCount of the CandidateCertificationRequirement.
ModifyingUserId Int False The ModifyingUserId of the CandidateCertificationRequirement.
OwnerId Int False The OwnerId of the CandidateCertificationRequirement.

CandidateCertificationRequirementEditHistory

Create, update, delete and query data of 'CandidateCertificationRequirementEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateCertificationRequirementEditHistory.
AuditTrail String False The AuditTrail of the CandidateCertificationRequirementEditHistory.
DateAdded Datetime False The DateAdded of the CandidateCertificationRequirementEditHistory.
MigrateGUID String False The MigrateGUID of the CandidateCertificationRequirementEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the CandidateCertificationRequirementEditHistory.
TargetEntityId Int False The TargetEntityId of the CandidateCertificationRequirementEditHistory.
TransactionID String False The TransactionID of the CandidateCertificationRequirementEditHistory.

CandidateCertificationRequirementEditHistoryFieldChange

Create, update, delete and query data of 'CandidateCertificationRequirementEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateCertificationRequirementEditHistoryFieldChange.
ColumnName String False The ColumnName of the CandidateCertificationRequirementEditHistoryFieldChange.
Display String False The Display of the CandidateCertificationRequirementEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the CandidateCertificationRequirementEditHistoryFieldChange.
NewValue String False The NewValue of the CandidateCertificationRequirementEditHistoryFieldChange.
OldValue String False The OldValue of the CandidateCertificationRequirementEditHistoryFieldChange.

CandidateEducation

Create, update, delete and query data of 'CandidateEducation' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateEducation.
CandidateId Int False The CandidateId of the CandidateEducation.
Certification String False The Certification of the CandidateEducation.
City String False The City of the CandidateEducation.
Comments String False The Comments of the CandidateEducation.
DateAdded Datetime False The DateAdded of the CandidateEducation.
Degree String False The Degree of the CandidateEducation.
EndDate Datetime False The EndDate of the CandidateEducation.
ExpirationDate Datetime False The ExpirationDate of the CandidateEducation.
GPA Double False The GPA of the CandidateEducation.
GraduationDate Datetime False The GraduationDate of the CandidateEducation.
Major String False The Major of the CandidateEducation.
MigrateGUID String False The MigrateGUID of the CandidateEducation.
School String False The School of the CandidateEducation.
StartDate Datetime False The StartDate of the CandidateEducation.
State String False The State of the CandidateEducation.
IsDeleted Bool False The IsDeleted of the CandidateEducation.

CandidateFileAttachment

Create, update, delete and query data of 'CandidateFileAttachment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateFileAttachment.
CandidateId Int False The CandidateId of the CandidateFileAttachment.
ContentSubType String False The ContentSubType of the CandidateFileAttachment.
ContentType String False The ContentType of the CandidateFileAttachment.
DateAdded Datetime False The DateAdded of the CandidateFileAttachment.
Description String False The Description of the CandidateFileAttachment.
Directory String False The Directory of the CandidateFileAttachment.
Distribution String False The Distribution of the CandidateFileAttachment.
ExternalID String False The ExternalID of the CandidateFileAttachment.
FileExtension String False The FileExtension of the CandidateFileAttachment.
FileOwnerId Int False The FileOwnerId of the CandidateFileAttachment.
FileSize Int False The FileSize of the CandidateFileAttachment.
FileType String False The FileType of the CandidateFileAttachment.
IsCopied Bool False The IsCopied of the CandidateFileAttachment.
IsEncrypted Bool False The IsEncrypted of the CandidateFileAttachment.
IsExternal Bool False The IsExternal of the CandidateFileAttachment.
IsOpen Bool False The IsOpen of the CandidateFileAttachment.
IsPrivate Bool False The IsPrivate of the CandidateFileAttachment.
IsSendOut Bool False The IsSendOut of the CandidateFileAttachment.
Name String False The Name of the CandidateFileAttachment.
Type String False The Type of the CandidateFileAttachment.
Uuid String False The Uuid of the CandidateFileAttachment.
IsDeleted Bool False The IsDeleted of the CandidateFileAttachment.

CandidateHistory

Create, update, delete and query data of 'CandidateHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateHistory.
CandidateId Int False The CandidateId of the CandidateHistory.
CandidateID2 Int False The CandidateID2 of the CandidateHistory.
Comments String False The Comments of the CandidateHistory.
DateAdded Datetime False The DateAdded of the CandidateHistory.
MigrateGUID String False The MigrateGUID of the CandidateHistory.
ModifyingUserId Int False The ModifyingUserId of the CandidateHistory.
Status String False The Status of the CandidateHistory.

CandidateReference

Create, update, delete and query data of 'CandidateReference' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateReference.
CandidateId Int False The CandidateId of the CandidateReference.
CandidateTitle String False The CandidateTitle of the CandidateReference.
ClientCorporationId Int False The ClientCorporationId of the CandidateReference.
CompanyorDepartment String False The CompanyorDepartment of the CandidateReference.
DateAdded Datetime False The DateAdded of the CandidateReference.
EmploymentEnd Datetime False The EmploymentEnd of the CandidateReference.
EmploymentStart Datetime False The EmploymentStart of the CandidateReference.
JobPostingId Int False The JobPostingId of the CandidateReference.
ManagerEmail String False The ManagerEmail of the CandidateReference.
ManagerPhone String False The ManagerPhone of the CandidateReference.
ManagerTitle String False The ManagerTitle of the CandidateReference.
MigrateGUID String False The MigrateGUID of the CandidateReference.
ReferenceID Int False The ReferenceID of the CandidateReference.
ReferenceLastName String False The ReferenceLastName of the CandidateReference.
ReferenceName String False The ReferenceName of the CandidateReference.
Status String False The Status of the CandidateReference.
YearsKnown Int False The YearsKnown of the CandidateReference.
IsDeleted Bool False The IsDeleted of the CandidateReference.

CandidateReferenceQuestion

Create, update, delete and query data of 'CandidateReferenceQuestion' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateReferenceQuestion.
CategoryId Int False The CategoryId of the CandidateReferenceQuestion.
Enabled Int False The Enabled of the CandidateReferenceQuestion.
MigrateGUID String False The MigrateGUID of the CandidateReferenceQuestion.
QuestionText String False The QuestionText of the CandidateReferenceQuestion.
SortOrder Int False The SortOrder of the CandidateReferenceQuestion.

CandidateReferenceResponse

Create, update, delete and query data of 'CandidateReferenceResponse' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateReferenceResponse.
MigrateGUID String False The MigrateGUID of the CandidateReferenceResponse.
QuestionId Int False The QuestionId of the CandidateReferenceResponse.
ReferenceId Int False The ReferenceId of the CandidateReferenceResponse.
ResponseText String False The ResponseText of the CandidateReferenceResponse.

CandidateSource

Create, update, delete and query data of 'CandidateSource' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateSource.
AccountNumber String False The AccountNumber of the CandidateSource.
Addressaddress1 String False The Addressaddress1 of the CandidateSource.
Addressaddress2 String False The Addressaddress2 of the CandidateSource.
Addresscity String False The Addresscity of the CandidateSource.
Addressstate String False The Addressstate of the CandidateSource.
Addresszip String False The Addresszip of the CandidateSource.
CandidateId Int False The CandidateId of the CandidateSource.
Fax String False The Fax of the CandidateSource.
Fee String False The Fee of the CandidateSource.
FeeType String False The FeeType of the CandidateSource.
MigrateGUID String False The MigrateGUID of the CandidateSource.
Name String False The Name of the CandidateSource.
Phone String False The Phone of the CandidateSource.
Type String False The Type of the CandidateSource.

CandidateWorkHistory

Create, update, delete and query data of 'CandidateWorkHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CandidateWorkHistory.
Bonus Double False The Bonus of the CandidateWorkHistory.
CandidateId Int False The CandidateId of the CandidateWorkHistory.
ClientCorporationId Int False The ClientCorporationId of the CandidateWorkHistory.
Comments String False The Comments of the CandidateWorkHistory.
Commission Double False The Commission of the CandidateWorkHistory.
CompanyName String False The CompanyName of the CandidateWorkHistory.
DateAdded Datetime False The DateAdded of the CandidateWorkHistory.
EndDate Datetime False The EndDate of the CandidateWorkHistory.
IsLastJob Bool False The IsLastJob of the CandidateWorkHistory.
JobPostingId Int False The JobPostingId of the CandidateWorkHistory.
MigrateGUID String False The MigrateGUID of the CandidateWorkHistory.
PlacementId Int False The PlacementId of the CandidateWorkHistory.
SalaryHigh String False The SalaryHigh of the CandidateWorkHistory.
SalaryLow String False The SalaryLow of the CandidateWorkHistory.
SalaryType String False The SalaryType of the CandidateWorkHistory.
StartDate Datetime False The StartDate of the CandidateWorkHistory.
TerminationReason String False The TerminationReason of the CandidateWorkHistory.
Title String False The Title of the CandidateWorkHistory.
IsDeleted Bool False The IsDeleted of the CandidateWorkHistory.

Category

Create, update, delete and query data of 'Category' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Category.
DateAdded Datetime False The DateAdded of the Category.
Description String False The Description of the Category.
Enabled Bool False The Enabled of the Category.
ExternalID Int False The ExternalID of the Category.
Name String False The Name of the Category.
Occupation String False The Occupation of the Category.
Type String False The Type of the Category.

Certification

Create, update, delete and query data of 'Certification' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Certification.
CategoryID Int False The CategoryID of the Certification.
Country String False The Country of the Certification.
Country2Id Int False The Country2Id of the Certification.
Description String False The Description of the Certification.
ExpirationdateOptional Bool False The ExpirationdateOptional of the Certification.
Name String False The Name of the Certification.
SpecialtyID Int False The SpecialtyID of the Certification.
State String False The State of the Certification.

CertificationGroup

Create, update, delete and query data of 'CertificationGroup' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CertificationGroup.
DateAdded Datetime False The DateAdded of the CertificationGroup.
DateLastModified Datetime False The DateLastModified of the CertificationGroup.
Name String False The Name of the CertificationGroup.
PrivateLabelID Int False The PrivateLabelID of the CertificationGroup.

CertificationRequirement

Create, update, delete and query data of 'CertificationRequirement' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CertificationRequirement.
CandidateCredentialId Int False The CandidateCredentialId of the CertificationRequirement.
CandidateCredentialName String False The CandidateCredentialName of the CertificationRequirement.
CandidateCredentialStatus String False The CandidateCredentialStatus of the CertificationRequirement.
CandidateId Int False The CandidateId of the CertificationRequirement.
CertificationId Int False The CertificationId of the CertificationRequirement.
DateAdded Datetime False The DateAdded of the CertificationRequirement.
ExpirationDate Datetime False The ExpirationDate of the CertificationRequirement.
JobSubmissionId Int False The JobSubmissionId of the CertificationRequirement.
MatchingCredentialCount Int False The MatchingCredentialCount of the CertificationRequirement.
ModifyingUserId Int False The ModifyingUserId of the CertificationRequirement.
OwnerId Int False The OwnerId of the CertificationRequirement.
PlacementId Int False The PlacementId of the CertificationRequirement.

ClientContact

Create, update, delete and query data of 'ClientContact' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContact.
AdditionalSkills String False The AdditionalSkills of the ClientContact.
AddressAddress String False The AddressAddress of the ClientContact.
AddressAddress2 String False The AddressAddress2 of the ClientContact.
AddressCity String False The AddressCity of the ClientContact.
AddressCountry Int False The AddressCountry of the ClientContact.
AddresscountryCode String False The AddresscountryCode of the ClientContact.
AddresscountryName String False The AddresscountryName of the ClientContact.
AddressState String False The AddressState of the ClientContact.
AddressZip String False The AddressZip of the ClientContact.
BranchID Int False The BranchID of the ClientContact.
CategoryId Int False The CategoryId of the ClientContact.
Certifications String False The Certifications of the ClientContact.
ClientContactID Int False The ClientContactID of the ClientContact.
CompanyId Int False The CompanyId of the ClientContact.
CompanyName String False The CompanyName of the ClientContact.
ContactName String False The ContactName of the ClientContact.
ContactName2 String False The ContactName2 of the ClientContact.
ContactName3 String False The ContactName3 of the ClientContact.
ContactName4 String False The ContactName4 of the ClientContact.
ContactName5 String False The ContactName5 of the ClientContact.
DateAdded Datetime False The DateAdded of the ClientContact.
DateLastModified Datetime False The DateLastModified of the ClientContact.
DeleteMe String False The DeleteMe of the ClientContact.
Department String False The Department of the ClientContact.
DesiredCategories String False The DesiredCategories of the ClientContact.
DesiredLocations String False The DesiredLocations of the ClientContact.
DesiredSkills String False The DesiredSkills of the ClientContact.
DesiredspecialtiessubCategory String False The DesiredspecialtiessubCategory of the ClientContact.
DirectPhone String False The DirectPhone of the ClientContact.
Email1 String False The Email1 of the ClientContact.
Email2 String False The Email2 of the ClientContact.
Email3 String False The Email3 of the ClientContact.
ExternalID String False The ExternalID of the ClientContact.
Fax String False The Fax of the ClientContact.
Fax2 String False The Fax2 of the ClientContact.
Fax3 String False The Fax3 of the ClientContact.
GeneralContactComments String False The GeneralContactComments of the ClientContact.
IsAnonymized Bool False The IsAnonymized of the ClientContact.
IsDaylightSavings Bool False The IsDaylightSavings of the ClientContact.
IsDefaultContact Bool False The IsDefaultContact of the ClientContact.
IsLockedOut Bool False The IsLockedOut of the ClientContact.
LastNote Datetime False The LastNote of the ClientContact.
LastVisit Datetime False The LastVisit of the ClientContact.
LinkedPersonId Int False The LinkedPersonId of the ClientContact.
MasterUserID Int False The MasterUserID of the ClientContact.
MigrateGUID String False The MigrateGUID of the ClientContact.
MobilePhone String False The MobilePhone of the ClientContact.
Name String False The Name of the ClientContact.
Nickname String False The Nickname of the ClientContact.
NumberofEmployees Int False The NumberofEmployees of the ClientContact.
Office String False The Office of the ClientContact.
OptedOut Bool False The OptedOut of the ClientContact.
OtherPhone String False The OtherPhone of the ClientContact.
OwnerId Int False The OwnerId of the ClientContact.
Pager String False The Pager of the ClientContact.
Password String False The Password of the ClientContact.
PersonSubtype String False The PersonSubtype of the ClientContact.
Phone3 String False The Phone3 of the ClientContact.
PreferredContactMethod String False The PreferredContactMethod of the ClientContact.
ProfessionaloverviewResume String False The ProfessionaloverviewResume of the ClientContact.
ReferredbyId Int False The ReferredbyId of the ClientContact.
ReportstoId Int False The ReportstoId of the ClientContact.
SecondaryAddressAddress String False The SecondaryAddressAddress of the ClientContact.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the ClientContact.
SecondaryAddressCity String False The SecondaryAddressCity of the ClientContact.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the ClientContact.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the ClientContact.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the ClientContact.
SecondaryAddressState String False The SecondaryAddressState of the ClientContact.
SecondaryAddressZip String False The SecondaryAddressZip of the ClientContact.
Source String False The Source of the ClientContact.
Status String False The Status of the ClientContact.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the ClientContact.
Title String False The Title of the ClientContact.
TrackTitle String False The TrackTitle of the ClientContact.
Type String False The Type of the ClientContact.
UserDateAdded Datetime False The UserDateAdded of the ClientContact.
Username String False The Username of the ClientContact.
UserTypeId Int False The UserTypeId of the ClientContact.
IsDeleted Bool False The IsDeleted of the ClientContact.

ClientContact1

Create, update, delete and query data of 'ClientContact1' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContact1.
AdditionalSkills String False The AdditionalSkills of the ClientContact1.
AddressAddress String False The AddressAddress of the ClientContact1.
AddressAddress2 String False The AddressAddress2 of the ClientContact1.
AddressCity String False The AddressCity of the ClientContact1.
AddressCountry Int False The AddressCountry of the ClientContact1.
AddresscountryCode String False The AddresscountryCode of the ClientContact1.
AddresscountryName String False The AddresscountryName of the ClientContact1.
AddressState String False The AddressState of the ClientContact1.
AddressZip String False The AddressZip of the ClientContact1.
BranchID Int False The BranchID of the ClientContact1.
CategoryId Int False The CategoryId of the ClientContact1.
Certifications String False The Certifications of the ClientContact1.
ClientContactID Int False The ClientContactID of the ClientContact1.
CompanyId Int False The CompanyId of the ClientContact1.
CompanyName String False The CompanyName of the ClientContact1.
ContactName String False The ContactName of the ClientContact1.
ContactName2 String False The ContactName2 of the ClientContact1.
ContactName3 String False The ContactName3 of the ClientContact1.
ContactName4 String False The ContactName4 of the ClientContact1.
ContactName5 String False The ContactName5 of the ClientContact1.
DateAdded Datetime False The DateAdded of the ClientContact1.
DateLastModified Datetime False The DateLastModified of the ClientContact1.
DeleteMe String False The DeleteMe of the ClientContact1.
Department String False The Department of the ClientContact1.
DesiredCategories String False The DesiredCategories of the ClientContact1.
DesiredLocations String False The DesiredLocations of the ClientContact1.
DesiredSkills String False The DesiredSkills of the ClientContact1.
DesiredspecialtiessubCategory String False The DesiredspecialtiessubCategory of the ClientContact1.
DirectPhone String False The DirectPhone of the ClientContact1.
Email1 String False The Email1 of the ClientContact1.
Email2 String False The Email2 of the ClientContact1.
Email3 String False The Email3 of the ClientContact1.
ExternalID String False The ExternalID of the ClientContact1.
Fax String False The Fax of the ClientContact1.
Fax2 String False The Fax2 of the ClientContact1.
Fax3 String False The Fax3 of the ClientContact1.
GeneralContactComments String False The GeneralContactComments of the ClientContact1.
IsAnonymized Bool False The IsAnonymized of the ClientContact1.
IsDaylightSavings Bool False The IsDaylightSavings of the ClientContact1.
IsDefaultContact Bool False The IsDefaultContact of the ClientContact1.
IsLockedOut Bool False The IsLockedOut of the ClientContact1.
LastNote Datetime False The LastNote of the ClientContact1.
LastVisit Datetime False The LastVisit of the ClientContact1.
LinkedPersonId Int False The LinkedPersonId of the ClientContact1.
MasterUserID Int False The MasterUserID of the ClientContact1.
MigrateGUID String False The MigrateGUID of the ClientContact1.
MobilePhone String False The MobilePhone of the ClientContact1.
Name String False The Name of the ClientContact1.
Nickname String False The Nickname of the ClientContact1.
NumberofEmployees Int False The NumberofEmployees of the ClientContact1.
Office String False The Office of the ClientContact1.
OptedOut Bool False The OptedOut of the ClientContact1.
OtherPhone String False The OtherPhone of the ClientContact1.
OwnerId Int False The OwnerId of the ClientContact1.
Pager String False The Pager of the ClientContact1.
Password String False The Password of the ClientContact1.
PersonSubtype String False The PersonSubtype of the ClientContact1.
Phone3 String False The Phone3 of the ClientContact1.
PreferredContactMethod String False The PreferredContactMethod of the ClientContact1.
ProfessionaloverviewResume String False The ProfessionaloverviewResume of the ClientContact1.
ReferredbyId Int False The ReferredbyId of the ClientContact1.
ReportstoId Int False The ReportstoId of the ClientContact1.
SecondaryAddressAddress String False The SecondaryAddressAddress of the ClientContact1.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the ClientContact1.
SecondaryAddressCity String False The SecondaryAddressCity of the ClientContact1.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the ClientContact1.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the ClientContact1.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the ClientContact1.
SecondaryAddressState String False The SecondaryAddressState of the ClientContact1.
SecondaryAddressZip String False The SecondaryAddressZip of the ClientContact1.
Source String False The Source of the ClientContact1.
Status String False The Status of the ClientContact1.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the ClientContact1.
Title String False The Title of the ClientContact1.
TrackTitle String False The TrackTitle of the ClientContact1.
Type String False The Type of the ClientContact1.
UserDateAdded Datetime False The UserDateAdded of the ClientContact1.
Username String False The Username of the ClientContact1.
UserTypeId Int False The UserTypeId of the ClientContact1.
IsDeleted Bool False The IsDeleted of the ClientContact1.

ClientContact2

Create, update, delete and query data of 'ClientContact2' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContact2.
AdditionalSkills String False The AdditionalSkills of the ClientContact2.
AddressAddress String False The AddressAddress of the ClientContact2.
AddressAddress2 String False The AddressAddress2 of the ClientContact2.
AddressCity String False The AddressCity of the ClientContact2.
AddressCountry Int False The AddressCountry of the ClientContact2.
AddresscountryCode String False The AddresscountryCode of the ClientContact2.
AddresscountryName String False The AddresscountryName of the ClientContact2.
AddressState String False The AddressState of the ClientContact2.
AddressZip String False The AddressZip of the ClientContact2.
BranchID Int False The BranchID of the ClientContact2.
CategoryId Int False The CategoryId of the ClientContact2.
Certifications String False The Certifications of the ClientContact2.
ClientContactID Int False The ClientContactID of the ClientContact2.
CompanyId Int False The CompanyId of the ClientContact2.
CompanyName String False The CompanyName of the ClientContact2.
ContactName String False The ContactName of the ClientContact2.
ContactName2 String False The ContactName2 of the ClientContact2.
ContactName3 String False The ContactName3 of the ClientContact2.
ContactName4 String False The ContactName4 of the ClientContact2.
ContactName5 String False The ContactName5 of the ClientContact2.
ContactOwnerId Int False The ContactOwnerId of the ClientContact2.
DateAdded Datetime False The DateAdded of the ClientContact2.
DateLastModified Datetime False The DateLastModified of the ClientContact2.
DeleteMe String False The DeleteMe of the ClientContact2.
DesiredCategories String False The DesiredCategories of the ClientContact2.
DesiredLocations String False The DesiredLocations of the ClientContact2.
DesiredSkills String False The DesiredSkills of the ClientContact2.
DesiredSpecialties String False The DesiredSpecialties of the ClientContact2.
Division String False The Division of the ClientContact2.
Email String False The Email of the ClientContact2.
Email2 String False The Email2 of the ClientContact2.
Email3 String False The Email3 of the ClientContact2.
ExternalID String False The ExternalID of the ClientContact2.
Fax String False The Fax of the ClientContact2.
Fax2 String False The Fax2 of the ClientContact2.
Fax3 String False The Fax3 of the ClientContact2.
GeneralContactComments String False The GeneralContactComments of the ClientContact2.
IsAnonymized Bool False The IsAnonymized of the ClientContact2.
IsDaylightSavings Bool False The IsDaylightSavings of the ClientContact2.
IsDefaultContact Bool False The IsDefaultContact of the ClientContact2.
IsLockedOut Bool False The IsLockedOut of the ClientContact2.
LastNote Datetime False The LastNote of the ClientContact2.
LastVisit Datetime False The LastVisit of the ClientContact2.
LinkedPersonId Int False The LinkedPersonId of the ClientContact2.
MasterUserID Int False The MasterUserID of the ClientContact2.
MigrateGUID String False The MigrateGUID of the ClientContact2.
Mobile String False The Mobile of the ClientContact2.
Name String False The Name of the ClientContact2.
NickName String False The NickName of the ClientContact2.
NumberofEmployees Int False The NumberofEmployees of the ClientContact2.
Office String False The Office of the ClientContact2.
OptedOut Bool False The OptedOut of the ClientContact2.
Pager String False The Pager of the ClientContact2.
Password String False The Password of the ClientContact2.
PersonSubtype String False The PersonSubtype of the ClientContact2.
Phone String False The Phone of the ClientContact2.
Phone2 String False The Phone2 of the ClientContact2.
Phone3 String False The Phone3 of the ClientContact2.
PreferredContactMethod String False The PreferredContactMethod of the ClientContact2.
ProfessionaloverviewResume String False The ProfessionaloverviewResume of the ClientContact2.
ReferredbyId Int False The ReferredbyId of the ClientContact2.
ReportstoId Int False The ReportstoId of the ClientContact2.
SecondaryAddressAddress String False The SecondaryAddressAddress of the ClientContact2.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the ClientContact2.
SecondaryAddressCity String False The SecondaryAddressCity of the ClientContact2.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the ClientContact2.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the ClientContact2.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the ClientContact2.
SecondaryAddressState String False The SecondaryAddressState of the ClientContact2.
SecondaryAddressZip String False The SecondaryAddressZip of the ClientContact2.
Source String False The Source of the ClientContact2.
Status String False The Status of the ClientContact2.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the ClientContact2.
Title String False The Title of the ClientContact2.
TrackTitle String False The TrackTitle of the ClientContact2.
Type String False The Type of the ClientContact2.
UserDateAdded Datetime False The UserDateAdded of the ClientContact2.
Username String False The Username of the ClientContact2.
UserTypeId Int False The UserTypeId of the ClientContact2.
IsDeleted Bool False The IsDeleted of the ClientContact2.

ClientContact3

Create, update, delete and query data of 'ClientContact3' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContact3.
AdditionalSkills String False The AdditionalSkills of the ClientContact3.
AddressAddress String False The AddressAddress of the ClientContact3.
AddressAddress2 String False The AddressAddress2 of the ClientContact3.
AddressCity String False The AddressCity of the ClientContact3.
AddressCountry Int False The AddressCountry of the ClientContact3.
AddresscountryCode String False The AddresscountryCode of the ClientContact3.
AddresscountryName String False The AddresscountryName of the ClientContact3.
AddressState String False The AddressState of the ClientContact3.
AddressZip String False The AddressZip of the ClientContact3.
BranchID Int False The BranchID of the ClientContact3.
CategoryId Int False The CategoryId of the ClientContact3.
Certifications String False The Certifications of the ClientContact3.
ClientContactID Int False The ClientContactID of the ClientContact3.
CompanyId Int False The CompanyId of the ClientContact3.
CompanyName String False The CompanyName of the ClientContact3.
ContactName String False The ContactName of the ClientContact3.
ContactName2 String False The ContactName2 of the ClientContact3.
ContactName3 String False The ContactName3 of the ClientContact3.
ContactName4 String False The ContactName4 of the ClientContact3.
ContactName5 String False The ContactName5 of the ClientContact3.
ContactOwnerId Int False The ContactOwnerId of the ClientContact3.
DateAdded Datetime False The DateAdded of the ClientContact3.
DateLastModified Datetime False The DateLastModified of the ClientContact3.
DeleteMe String False The DeleteMe of the ClientContact3.
DesiredCategories String False The DesiredCategories of the ClientContact3.
DesiredLocations String False The DesiredLocations of the ClientContact3.
DesiredSkills String False The DesiredSkills of the ClientContact3.
DesiredSpecialties String False The DesiredSpecialties of the ClientContact3.
Division String False The Division of the ClientContact3.
Email String False The Email of the ClientContact3.
Email2 String False The Email2 of the ClientContact3.
Email3 String False The Email3 of the ClientContact3.
ExternalID String False The ExternalID of the ClientContact3.
Fax String False The Fax of the ClientContact3.
Fax2 String False The Fax2 of the ClientContact3.
Fax3 String False The Fax3 of the ClientContact3.
GeneralContactComments String False The GeneralContactComments of the ClientContact3.
IsAnonymized Bool False The IsAnonymized of the ClientContact3.
IsDaylightSavings Bool False The IsDaylightSavings of the ClientContact3.
IsDefaultContact Bool False The IsDefaultContact of the ClientContact3.
IsLockedOut Bool False The IsLockedOut of the ClientContact3.
LastNote Datetime False The LastNote of the ClientContact3.
LastVisit Datetime False The LastVisit of the ClientContact3.
LinkedPersonId Int False The LinkedPersonId of the ClientContact3.
MasterUserID Int False The MasterUserID of the ClientContact3.
MigrateGUID String False The MigrateGUID of the ClientContact3.
Mobile String False The Mobile of the ClientContact3.
Name String False The Name of the ClientContact3.
NickName String False The NickName of the ClientContact3.
NumberofEmployees Int False The NumberofEmployees of the ClientContact3.
Office String False The Office of the ClientContact3.
OptedOut Bool False The OptedOut of the ClientContact3.
Pager String False The Pager of the ClientContact3.
Password String False The Password of the ClientContact3.
PersonSubtype String False The PersonSubtype of the ClientContact3.
Phone String False The Phone of the ClientContact3.
Phone2 String False The Phone2 of the ClientContact3.
Phone3 String False The Phone3 of the ClientContact3.
PreferredContactMethod String False The PreferredContactMethod of the ClientContact3.
ProfessionaloverviewResume String False The ProfessionaloverviewResume of the ClientContact3.
ReferredbyId Int False The ReferredbyId of the ClientContact3.
ReportstoId Int False The ReportstoId of the ClientContact3.
SecondaryAddressAddress String False The SecondaryAddressAddress of the ClientContact3.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the ClientContact3.
SecondaryAddressCity String False The SecondaryAddressCity of the ClientContact3.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the ClientContact3.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the ClientContact3.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the ClientContact3.
SecondaryAddressState String False The SecondaryAddressState of the ClientContact3.
SecondaryAddressZip String False The SecondaryAddressZip of the ClientContact3.
Source String False The Source of the ClientContact3.
Status String False The Status of the ClientContact3.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the ClientContact3.
Title String False The Title of the ClientContact3.
TrackTitle String False The TrackTitle of the ClientContact3.
Type String False The Type of the ClientContact3.
UserDateAdded Datetime False The UserDateAdded of the ClientContact3.
Username String False The Username of the ClientContact3.
UserTypeId Int False The UserTypeId of the ClientContact3.
IsDeleted Bool False The IsDeleted of the ClientContact3.

ClientContact4

Create, update, delete and query data of 'ClientContact4' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContact4.
AdditionalSkills String False The AdditionalSkills of the ClientContact4.
AddressAddress String False The AddressAddress of the ClientContact4.
AddressAddress2 String False The AddressAddress2 of the ClientContact4.
AddressCity String False The AddressCity of the ClientContact4.
AddressCountry Int False The AddressCountry of the ClientContact4.
AddresscountryCode String False The AddresscountryCode of the ClientContact4.
AddresscountryName String False The AddresscountryName of the ClientContact4.
AddressState String False The AddressState of the ClientContact4.
AddressZip String False The AddressZip of the ClientContact4.
BranchID Int False The BranchID of the ClientContact4.
CategoryId Int False The CategoryId of the ClientContact4.
Certifications String False The Certifications of the ClientContact4.
ClientContactID Int False The ClientContactID of the ClientContact4.
CompanyId Int False The CompanyId of the ClientContact4.
CompanyName String False The CompanyName of the ClientContact4.
ContactName String False The ContactName of the ClientContact4.
ContactName2 String False The ContactName2 of the ClientContact4.
ContactName3 String False The ContactName3 of the ClientContact4.
ContactName4 String False The ContactName4 of the ClientContact4.
ContactName5 String False The ContactName5 of the ClientContact4.
ContactOwnerId Int False The ContactOwnerId of the ClientContact4.
DateAdded Datetime False The DateAdded of the ClientContact4.
DateLastModified Datetime False The DateLastModified of the ClientContact4.
DeleteMe String False The DeleteMe of the ClientContact4.
DesiredCategories String False The DesiredCategories of the ClientContact4.
DesiredLocations String False The DesiredLocations of the ClientContact4.
DesiredSkills String False The DesiredSkills of the ClientContact4.
DesiredSpecialties String False The DesiredSpecialties of the ClientContact4.
Division String False The Division of the ClientContact4.
Email String False The Email of the ClientContact4.
Email2 String False The Email2 of the ClientContact4.
Email3 String False The Email3 of the ClientContact4.
ExternalID String False The ExternalID of the ClientContact4.
Fax String False The Fax of the ClientContact4.
Fax2 String False The Fax2 of the ClientContact4.
Fax3 String False The Fax3 of the ClientContact4.
GeneralContactComments String False The GeneralContactComments of the ClientContact4.
IsAnonymized Bool False The IsAnonymized of the ClientContact4.
IsDaylightSavings Bool False The IsDaylightSavings of the ClientContact4.
IsDefaultContact Bool False The IsDefaultContact of the ClientContact4.
IsLockedOut Bool False The IsLockedOut of the ClientContact4.
LastNote Datetime False The LastNote of the ClientContact4.
LastVisit Datetime False The LastVisit of the ClientContact4.
LinkedPersonId Int False The LinkedPersonId of the ClientContact4.
MasterUserID Int False The MasterUserID of the ClientContact4.
MigrateGUID String False The MigrateGUID of the ClientContact4.
Mobile String False The Mobile of the ClientContact4.
Name String False The Name of the ClientContact4.
NickName String False The NickName of the ClientContact4.
NumberofEmployees Int False The NumberofEmployees of the ClientContact4.
Office String False The Office of the ClientContact4.
OptedOut Bool False The OptedOut of the ClientContact4.
Pager String False The Pager of the ClientContact4.
Password String False The Password of the ClientContact4.
PersonSubtype String False The PersonSubtype of the ClientContact4.
Phone String False The Phone of the ClientContact4.
Phone2 String False The Phone2 of the ClientContact4.
Phone3 String False The Phone3 of the ClientContact4.
PreferredContactMethod String False The PreferredContactMethod of the ClientContact4.
ProfessionaloverviewResume String False The ProfessionaloverviewResume of the ClientContact4.
ReferredbyId Int False The ReferredbyId of the ClientContact4.
ReportstoId Int False The ReportstoId of the ClientContact4.
SecondaryAddressAddress String False The SecondaryAddressAddress of the ClientContact4.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the ClientContact4.
SecondaryAddressCity String False The SecondaryAddressCity of the ClientContact4.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the ClientContact4.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the ClientContact4.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the ClientContact4.
SecondaryAddressState String False The SecondaryAddressState of the ClientContact4.
SecondaryAddressZip String False The SecondaryAddressZip of the ClientContact4.
Source String False The Source of the ClientContact4.
Status String False The Status of the ClientContact4.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the ClientContact4.
Title String False The Title of the ClientContact4.
TrackTitle String False The TrackTitle of the ClientContact4.
Type String False The Type of the ClientContact4.
UserDateAdded Datetime False The UserDateAdded of the ClientContact4.
Username String False The Username of the ClientContact4.
UserTypeId Int False The UserTypeId of the ClientContact4.
IsDeleted Bool False The IsDeleted of the ClientContact4.

ClientContact5

Create, update, delete and query data of 'ClientContact5' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContact5.
AdditionalSkills String False The AdditionalSkills of the ClientContact5.
AddressAddress String False The AddressAddress of the ClientContact5.
AddressAddress2 String False The AddressAddress2 of the ClientContact5.
AddressCity String False The AddressCity of the ClientContact5.
AddressCountry Int False The AddressCountry of the ClientContact5.
AddresscountryCode String False The AddresscountryCode of the ClientContact5.
AddresscountryName String False The AddresscountryName of the ClientContact5.
AddressState String False The AddressState of the ClientContact5.
AddressZip String False The AddressZip of the ClientContact5.
BranchID Int False The BranchID of the ClientContact5.
CategoryId Int False The CategoryId of the ClientContact5.
Certifications String False The Certifications of the ClientContact5.
ClientContactID Int False The ClientContactID of the ClientContact5.
CompanyId Int False The CompanyId of the ClientContact5.
CompanyName String False The CompanyName of the ClientContact5.
ContactName String False The ContactName of the ClientContact5.
ContactName2 String False The ContactName2 of the ClientContact5.
ContactName3 String False The ContactName3 of the ClientContact5.
ContactName4 String False The ContactName4 of the ClientContact5.
ContactName5 String False The ContactName5 of the ClientContact5.
ContactOwnerId Int False The ContactOwnerId of the ClientContact5.
DateAdded Datetime False The DateAdded of the ClientContact5.
DateLastModified Datetime False The DateLastModified of the ClientContact5.
DeleteMe String False The DeleteMe of the ClientContact5.
DesiredCategories String False The DesiredCategories of the ClientContact5.
DesiredLocations String False The DesiredLocations of the ClientContact5.
DesiredSkills String False The DesiredSkills of the ClientContact5.
DesiredSpecialties String False The DesiredSpecialties of the ClientContact5.
Division String False The Division of the ClientContact5.
Email String False The Email of the ClientContact5.
Email2 String False The Email2 of the ClientContact5.
Email3 String False The Email3 of the ClientContact5.
ExternalID String False The ExternalID of the ClientContact5.
Fax String False The Fax of the ClientContact5.
Fax2 String False The Fax2 of the ClientContact5.
Fax3 String False The Fax3 of the ClientContact5.
GeneralContactComments String False The GeneralContactComments of the ClientContact5.
IsAnonymized Bool False The IsAnonymized of the ClientContact5.
IsDaylightSavings Bool False The IsDaylightSavings of the ClientContact5.
IsDefaultContact Bool False The IsDefaultContact of the ClientContact5.
IsLockedOut Bool False The IsLockedOut of the ClientContact5.
LastNote Datetime False The LastNote of the ClientContact5.
LastVisit Datetime False The LastVisit of the ClientContact5.
LinkedPersonId Int False The LinkedPersonId of the ClientContact5.
MasterUserID Int False The MasterUserID of the ClientContact5.
MigrateGUID String False The MigrateGUID of the ClientContact5.
Mobile String False The Mobile of the ClientContact5.
Name String False The Name of the ClientContact5.
NickName String False The NickName of the ClientContact5.
NumberofEmployees Int False The NumberofEmployees of the ClientContact5.
Office String False The Office of the ClientContact5.
OptedOut Bool False The OptedOut of the ClientContact5.
Pager String False The Pager of the ClientContact5.
Password String False The Password of the ClientContact5.
PersonSubtype String False The PersonSubtype of the ClientContact5.
Phone String False The Phone of the ClientContact5.
Phone2 String False The Phone2 of the ClientContact5.
Phone3 String False The Phone3 of the ClientContact5.
PreferredContactMethod String False The PreferredContactMethod of the ClientContact5.
ProfessionaloverviewResume String False The ProfessionaloverviewResume of the ClientContact5.
ReferredbyId Int False The ReferredbyId of the ClientContact5.
ReportstoId Int False The ReportstoId of the ClientContact5.
SecondaryAddressAddress String False The SecondaryAddressAddress of the ClientContact5.
SecondaryAddressAddress2 String False The SecondaryAddressAddress2 of the ClientContact5.
SecondaryAddressCity String False The SecondaryAddressCity of the ClientContact5.
SecondaryAddressCountry Int False The SecondaryAddressCountry of the ClientContact5.
SecondaryAddresscountryCode String False The SecondaryAddresscountryCode of the ClientContact5.
SecondaryAddresscountryName String False The SecondaryAddresscountryName of the ClientContact5.
SecondaryAddressState String False The SecondaryAddressState of the ClientContact5.
SecondaryAddressZip String False The SecondaryAddressZip of the ClientContact5.
Source String False The Source of the ClientContact5.
Status String False The Status of the ClientContact5.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the ClientContact5.
Title String False The Title of the ClientContact5.
TrackTitle String False The TrackTitle of the ClientContact5.
Type String False The Type of the ClientContact5.
UserDateAdded Datetime False The UserDateAdded of the ClientContact5.
Username String False The Username of the ClientContact5.
UserTypeId Int False The UserTypeId of the ClientContact5.
IsDeleted Bool False The IsDeleted of the ClientContact5.

ClientContactFileAttachment

Create, update, delete and query data of 'ClientContactFileAttachment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContactFileAttachment.
ClientContactId Int False The ClientContactId of the ClientContactFileAttachment.
ContentSubType String False The ContentSubType of the ClientContactFileAttachment.
ContentType String False The ContentType of the ClientContactFileAttachment.
DateAdded Datetime False The DateAdded of the ClientContactFileAttachment.
Description String False The Description of the ClientContactFileAttachment.
Directory String False The Directory of the ClientContactFileAttachment.
Distribution String False The Distribution of the ClientContactFileAttachment.
ExternalID String False The ExternalID of the ClientContactFileAttachment.
FileExtension String False The FileExtension of the ClientContactFileAttachment.
FileOwnerId Int False The FileOwnerId of the ClientContactFileAttachment.
FileSize Int False The FileSize of the ClientContactFileAttachment.
FileType String False The FileType of the ClientContactFileAttachment.
IsCopied Bool False The IsCopied of the ClientContactFileAttachment.
IsEncrypted Bool False The IsEncrypted of the ClientContactFileAttachment.
IsExternal Bool False The IsExternal of the ClientContactFileAttachment.
IsOpen Bool False The IsOpen of the ClientContactFileAttachment.
IsPrivate Bool False The IsPrivate of the ClientContactFileAttachment.
IsSendOut Bool False The IsSendOut of the ClientContactFileAttachment.
Name String False The Name of the ClientContactFileAttachment.
Type String False The Type of the ClientContactFileAttachment.
Uuid String False The Uuid of the ClientContactFileAttachment.
IsDeleted Bool False The IsDeleted of the ClientContactFileAttachment.

ClientContactHistory

Create, update, delete and query data of 'ClientContactHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientContactHistory.
ClientContactId Int False The ClientContactId of the ClientContactHistory.
ClientContactID2 Int False The ClientContactID2 of the ClientContactHistory.
ClientCorporationId Int False The ClientCorporationId of the ClientContactHistory.
DateAdded Datetime False The DateAdded of the ClientContactHistory.
MigrateGUID String False The MigrateGUID of the ClientContactHistory.
ModifyingUserId Int False The ModifyingUserId of the ClientContactHistory.
Status String False The Status of the ClientContactHistory.

ClientCorporation

Create, update, delete and query data of 'ClientCorporation' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporation.
Ofemployees Int False The Ofemployees of the ClientCorporation.
Ofoffices Int False The Ofoffices of the ClientCorporation.
AccountIntelligence String False The AccountIntelligence of the ClientCorporation.
AddressAddress String False The AddressAddress of the ClientCorporation.
AddressAddress2 String False The AddressAddress2 of the ClientCorporation.
AddressCity String False The AddressCity of the ClientCorporation.
AddressCountry Int False The AddressCountry of the ClientCorporation.
AddresscountryCode String False The AddresscountryCode of the ClientCorporation.
AddresscountryName String False The AddresscountryName of the ClientCorporation.
AddressState String False The AddressState of the ClientCorporation.
AddressZip String False The AddressZip of the ClientCorporation.
AnnualrevenueMillions String False The AnnualrevenueMillions of the ClientCorporation.
BillingAddressAddress2 String False The BillingAddressAddress2 of the ClientCorporation.
BillingAddressBillingAddress String False The BillingAddressBillingAddress of the ClientCorporation.
BillingAddressBillingCity String False The BillingAddressBillingCity of the ClientCorporation.
BillingAddressBillingCountry Int False The BillingAddressBillingCountry of the ClientCorporation.
BillingAddressBillingState String False The BillingAddressBillingState of the ClientCorporation.
BillingAddressBillingZip String False The BillingAddressBillingZip of the ClientCorporation.
BillingAddresscountryCode String False The BillingAddresscountryCode of the ClientCorporation.
BillingAddresscountryName String False The BillingAddresscountryName of the ClientCorporation.
BillingContact String False The BillingContact of the ClientCorporation.
BillingFrequency String False The BillingFrequency of the ClientCorporation.
BillingPhone String False The BillingPhone of the ClientCorporation.
BranchID Int False The BranchID of the ClientCorporation.
BusinessSectors String False The BusinessSectors of the ClientCorporation.
CompanyInfo String False The CompanyInfo of the ClientCorporation.
CompanyName String False The CompanyName of the ClientCorporation.
CompanyWebsite String False The CompanyWebsite of the ClientCorporation.
Competitors String False The Competitors of the ClientCorporation.
CulturePerks String False The CulturePerks of the ClientCorporation.
DateAdded Datetime False The DateAdded of the ClientCorporation.
DateLastModified Datetime False The DateLastModified of the ClientCorporation.
ExternalID String False The ExternalID of the ClientCorporation.
FacebookProfileName String False The FacebookProfileName of the ClientCorporation.
Fax String False The Fax of the ClientCorporation.
FundingStatus String False The FundingStatus of the ClientCorporation.
InvoiceFormat String False The InvoiceFormat of the ClientCorporation.
LinkedInProfileName String False The LinkedInProfileName of the ClientCorporation.
MainPhone String False The MainPhone of the ClientCorporation.
ManagedFromId Int False The ManagedFromId of the ClientCorporation.
Ownership String False The Ownership of the ClientCorporation.
ParentCompanyId Int False The ParentCompanyId of the ClientCorporation.
Revenue String False The Revenue of the ClientCorporation.
Sector String False The Sector of the ClientCorporation.
Standardpermfee Double False The Standardpermfee of the ClientCorporation.
Status String False The Status of the ClientCorporation.
Tax Double False The Tax of the ClientCorporation.
TickerSymbol String False The TickerSymbol of the ClientCorporation.
TrackTitle String False The TrackTitle of the ClientCorporation.
TwitterHandle String False The TwitterHandle of the ClientCorporation.
WorkWeekBegin Int False The WorkWeekBegin of the ClientCorporation.
YearFounded Datetime False The YearFounded of the ClientCorporation.

ClientCorporation1

Create, update, delete and query data of 'ClientCorporation1' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporation1.
Ofemployees Int False The Ofemployees of the ClientCorporation1.
Ofoffices Int False The Ofoffices of the ClientCorporation1.
AccountIntelligence String False The AccountIntelligence of the ClientCorporation1.
AddressAddress String False The AddressAddress of the ClientCorporation1.
AddressAddress2 String False The AddressAddress2 of the ClientCorporation1.
AddressCity String False The AddressCity of the ClientCorporation1.
AddressCountry Int False The AddressCountry of the ClientCorporation1.
AddresscountryCode String False The AddresscountryCode of the ClientCorporation1.
AddresscountryName String False The AddresscountryName of the ClientCorporation1.
AddressState String False The AddressState of the ClientCorporation1.
AddressZip String False The AddressZip of the ClientCorporation1.
AnnualrevenueMillions String False The AnnualrevenueMillions of the ClientCorporation1.
BillingAddressAddress2 String False The BillingAddressAddress2 of the ClientCorporation1.
BillingAddressBillingAddress String False The BillingAddressBillingAddress of the ClientCorporation1.
BillingAddressBillingCity String False The BillingAddressBillingCity of the ClientCorporation1.
BillingAddressBillingCountry Int False The BillingAddressBillingCountry of the ClientCorporation1.
BillingAddressBillingState String False The BillingAddressBillingState of the ClientCorporation1.
BillingAddressBillingZip String False The BillingAddressBillingZip of the ClientCorporation1.
BillingAddresscountryCode String False The BillingAddresscountryCode of the ClientCorporation1.
BillingAddresscountryName String False The BillingAddresscountryName of the ClientCorporation1.
BillingContact String False The BillingContact of the ClientCorporation1.
BillingFrequency String False The BillingFrequency of the ClientCorporation1.
BillingPhone String False The BillingPhone of the ClientCorporation1.
BranchID Int False The BranchID of the ClientCorporation1.
BusinessSectors String False The BusinessSectors of the ClientCorporation1.
CompanyInfo String False The CompanyInfo of the ClientCorporation1.
CompanyName String False The CompanyName of the ClientCorporation1.
CompanyWebsite String False The CompanyWebsite of the ClientCorporation1.
Competitors String False The Competitors of the ClientCorporation1.
CulturePerks String False The CulturePerks of the ClientCorporation1.
DateAdded Datetime False The DateAdded of the ClientCorporation1.
DateLastModified Datetime False The DateLastModified of the ClientCorporation1.
ExternalID String False The ExternalID of the ClientCorporation1.
FacebookProfileName String False The FacebookProfileName of the ClientCorporation1.
Fax String False The Fax of the ClientCorporation1.
FundingStatus String False The FundingStatus of the ClientCorporation1.
InvoiceFormat String False The InvoiceFormat of the ClientCorporation1.
LinkedInProfileName String False The LinkedInProfileName of the ClientCorporation1.
MainPhone String False The MainPhone of the ClientCorporation1.
ManagedFromId Int False The ManagedFromId of the ClientCorporation1.
Ownership String False The Ownership of the ClientCorporation1.
ParentCompanyId Int False The ParentCompanyId of the ClientCorporation1.
Revenue String False The Revenue of the ClientCorporation1.
Sector String False The Sector of the ClientCorporation1.
Standardpermfee Double False The Standardpermfee of the ClientCorporation1.
Status String False The Status of the ClientCorporation1.
Tax Double False The Tax of the ClientCorporation1.
TickerSymbol String False The TickerSymbol of the ClientCorporation1.
TrackTitle String False The TrackTitle of the ClientCorporation1.
TwitterHandle String False The TwitterHandle of the ClientCorporation1.
WorkWeekBegin Int False The WorkWeekBegin of the ClientCorporation1.
YearFounded Datetime False The YearFounded of the ClientCorporation1.

ClientCorporation2

Create, update, delete and query data of 'ClientCorporation2' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporation2.
Ofemployees Int False The Ofemployees of the ClientCorporation2.
Ofoffices Int False The Ofoffices of the ClientCorporation2.
AddressAddress String False The AddressAddress of the ClientCorporation2.
AddressAddress2 String False The AddressAddress2 of the ClientCorporation2.
AddressCity String False The AddressCity of the ClientCorporation2.
AddressCountry Int False The AddressCountry of the ClientCorporation2.
AddresscountryCode String False The AddresscountryCode of the ClientCorporation2.
AddresscountryName String False The AddresscountryName of the ClientCorporation2.
AddressState String False The AddressState of the ClientCorporation2.
AddressZip String False The AddressZip of the ClientCorporation2.
AnnualrevenueMillions String False The AnnualrevenueMillions of the ClientCorporation2.
BillingAddressAddress2 String False The BillingAddressAddress2 of the ClientCorporation2.
BillingAddressBillingAddress String False The BillingAddressBillingAddress of the ClientCorporation2.
BillingAddressBillingCity String False The BillingAddressBillingCity of the ClientCorporation2.
BillingAddressBillingCountry Int False The BillingAddressBillingCountry of the ClientCorporation2.
BillingAddressBillingState String False The BillingAddressBillingState of the ClientCorporation2.
BillingAddressBillingZip String False The BillingAddressBillingZip of the ClientCorporation2.
BillingAddresscountryCode String False The BillingAddresscountryCode of the ClientCorporation2.
BillingAddresscountryName String False The BillingAddresscountryName of the ClientCorporation2.
BillingContact String False The BillingContact of the ClientCorporation2.
BillingFrequency String False The BillingFrequency of the ClientCorporation2.
BillingPhone String False The BillingPhone of the ClientCorporation2.
BranchID Int False The BranchID of the ClientCorporation2.
BusinessSectors String False The BusinessSectors of the ClientCorporation2.
ClientOverview String False The ClientOverview of the ClientCorporation2.
CompanyDescription String False The CompanyDescription of the ClientCorporation2.
CompanyName String False The CompanyName of the ClientCorporation2.
CompanyURL String False The CompanyURL of the ClientCorporation2.
Competitors String False The Competitors of the ClientCorporation2.
CulturePerks String False The CulturePerks of the ClientCorporation2.
DateAdded Datetime False The DateAdded of the ClientCorporation2.
DateLastModified Datetime False The DateLastModified of the ClientCorporation2.
ExternalID String False The ExternalID of the ClientCorporation2.
FacebookProfileName String False The FacebookProfileName of the ClientCorporation2.
Fax String False The Fax of the ClientCorporation2.
FundingStatus String False The FundingStatus of the ClientCorporation2.
IndustryCategory String False The IndustryCategory of the ClientCorporation2.
InvoiceFormat String False The InvoiceFormat of the ClientCorporation2.
LinkedInProfileName String False The LinkedInProfileName of the ClientCorporation2.
ManagedFromId Int False The ManagedFromId of the ClientCorporation2.
Ownership String False The Ownership of the ClientCorporation2.
ParentCompanyId Int False The ParentCompanyId of the ClientCorporation2.
Phone String False The Phone of the ClientCorporation2.
Revenue String False The Revenue of the ClientCorporation2.
Standardpermfee Double False The Standardpermfee of the ClientCorporation2.
Status String False The Status of the ClientCorporation2.
TaxRate Double False The TaxRate of the ClientCorporation2.
TickerSymbol String False The TickerSymbol of the ClientCorporation2.
TrackTitle String False The TrackTitle of the ClientCorporation2.
TwitterHandle String False The TwitterHandle of the ClientCorporation2.
WorkWeekBegin Int False The WorkWeekBegin of the ClientCorporation2.
YearFounded Datetime False The YearFounded of the ClientCorporation2.

ClientCorporation3

Create, update, delete and query data of 'ClientCorporation3' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporation3.
Ofemployees Int False The Ofemployees of the ClientCorporation3.
Ofoffices Int False The Ofoffices of the ClientCorporation3.
AddressAddress String False The AddressAddress of the ClientCorporation3.
AddressAddress2 String False The AddressAddress2 of the ClientCorporation3.
AddressCity String False The AddressCity of the ClientCorporation3.
AddressCountry Int False The AddressCountry of the ClientCorporation3.
AddresscountryCode String False The AddresscountryCode of the ClientCorporation3.
AddresscountryName String False The AddresscountryName of the ClientCorporation3.
AddressState String False The AddressState of the ClientCorporation3.
AddressZip String False The AddressZip of the ClientCorporation3.
AnnualrevenueMillions String False The AnnualrevenueMillions of the ClientCorporation3.
BillingAddressAddress2 String False The BillingAddressAddress2 of the ClientCorporation3.
BillingAddressBillingAddress String False The BillingAddressBillingAddress of the ClientCorporation3.
BillingAddressBillingCity String False The BillingAddressBillingCity of the ClientCorporation3.
BillingAddressBillingCountry Int False The BillingAddressBillingCountry of the ClientCorporation3.
BillingAddressBillingState String False The BillingAddressBillingState of the ClientCorporation3.
BillingAddressBillingZip String False The BillingAddressBillingZip of the ClientCorporation3.
BillingAddresscountryCode String False The BillingAddresscountryCode of the ClientCorporation3.
BillingAddresscountryName String False The BillingAddresscountryName of the ClientCorporation3.
BillingContact String False The BillingContact of the ClientCorporation3.
BillingFrequency String False The BillingFrequency of the ClientCorporation3.
BillingPhone String False The BillingPhone of the ClientCorporation3.
BranchID Int False The BranchID of the ClientCorporation3.
BusinessSectors String False The BusinessSectors of the ClientCorporation3.
ClientOverview String False The ClientOverview of the ClientCorporation3.
CompanyDescription String False The CompanyDescription of the ClientCorporation3.
CompanyName String False The CompanyName of the ClientCorporation3.
CompanyURL String False The CompanyURL of the ClientCorporation3.
Competitors String False The Competitors of the ClientCorporation3.
CulturePerks String False The CulturePerks of the ClientCorporation3.
DateAdded Datetime False The DateAdded of the ClientCorporation3.
DateLastModified Datetime False The DateLastModified of the ClientCorporation3.
ExternalID String False The ExternalID of the ClientCorporation3.
FacebookProfileName String False The FacebookProfileName of the ClientCorporation3.
Fax String False The Fax of the ClientCorporation3.
FundingStatus String False The FundingStatus of the ClientCorporation3.
IndustryCategory String False The IndustryCategory of the ClientCorporation3.
InvoiceFormat String False The InvoiceFormat of the ClientCorporation3.
LinkedInProfileName String False The LinkedInProfileName of the ClientCorporation3.
ManagedFromId Int False The ManagedFromId of the ClientCorporation3.
Ownership String False The Ownership of the ClientCorporation3.
ParentCompanyId Int False The ParentCompanyId of the ClientCorporation3.
Phone String False The Phone of the ClientCorporation3.
Revenue String False The Revenue of the ClientCorporation3.
Standardpermfee Double False The Standardpermfee of the ClientCorporation3.
Status String False The Status of the ClientCorporation3.
TaxRate Double False The TaxRate of the ClientCorporation3.
TickerSymbol String False The TickerSymbol of the ClientCorporation3.
TrackTitle String False The TrackTitle of the ClientCorporation3.
TwitterHandle String False The TwitterHandle of the ClientCorporation3.
WorkWeekBegin Int False The WorkWeekBegin of the ClientCorporation3.
YearFounded Datetime False The YearFounded of the ClientCorporation3.

ClientCorporation4

Create, update, delete and query data of 'ClientCorporation4' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporation4.
Ofemployees Int False The Ofemployees of the ClientCorporation4.
Ofoffices Int False The Ofoffices of the ClientCorporation4.
AddressAddress String False The AddressAddress of the ClientCorporation4.
AddressAddress2 String False The AddressAddress2 of the ClientCorporation4.
AddressCity String False The AddressCity of the ClientCorporation4.
AddressCountry Int False The AddressCountry of the ClientCorporation4.
AddresscountryCode String False The AddresscountryCode of the ClientCorporation4.
AddresscountryName String False The AddresscountryName of the ClientCorporation4.
AddressState String False The AddressState of the ClientCorporation4.
AddressZip String False The AddressZip of the ClientCorporation4.
AnnualrevenueMillions String False The AnnualrevenueMillions of the ClientCorporation4.
BillingAddressAddress2 String False The BillingAddressAddress2 of the ClientCorporation4.
BillingAddressBillingAddress String False The BillingAddressBillingAddress of the ClientCorporation4.
BillingAddressBillingCity String False The BillingAddressBillingCity of the ClientCorporation4.
BillingAddressBillingCountry Int False The BillingAddressBillingCountry of the ClientCorporation4.
BillingAddressBillingState String False The BillingAddressBillingState of the ClientCorporation4.
BillingAddressBillingZip String False The BillingAddressBillingZip of the ClientCorporation4.
BillingAddresscountryCode String False The BillingAddresscountryCode of the ClientCorporation4.
BillingAddresscountryName String False The BillingAddresscountryName of the ClientCorporation4.
BillingContact String False The BillingContact of the ClientCorporation4.
BillingFrequency String False The BillingFrequency of the ClientCorporation4.
BillingPhone String False The BillingPhone of the ClientCorporation4.
BranchID Int False The BranchID of the ClientCorporation4.
BusinessSectors String False The BusinessSectors of the ClientCorporation4.
ClientOverview String False The ClientOverview of the ClientCorporation4.
CompanyDescription String False The CompanyDescription of the ClientCorporation4.
CompanyName String False The CompanyName of the ClientCorporation4.
CompanyURL String False The CompanyURL of the ClientCorporation4.
Competitors String False The Competitors of the ClientCorporation4.
CulturePerks String False The CulturePerks of the ClientCorporation4.
DateAdded Datetime False The DateAdded of the ClientCorporation4.
DateLastModified Datetime False The DateLastModified of the ClientCorporation4.
ExternalID String False The ExternalID of the ClientCorporation4.
FacebookProfileName String False The FacebookProfileName of the ClientCorporation4.
Fax String False The Fax of the ClientCorporation4.
FundingStatus String False The FundingStatus of the ClientCorporation4.
IndustryCategory String False The IndustryCategory of the ClientCorporation4.
InvoiceFormat String False The InvoiceFormat of the ClientCorporation4.
LinkedInProfileName String False The LinkedInProfileName of the ClientCorporation4.
ManagedFromId Int False The ManagedFromId of the ClientCorporation4.
Ownership String False The Ownership of the ClientCorporation4.
ParentCompanyId Int False The ParentCompanyId of the ClientCorporation4.
Phone String False The Phone of the ClientCorporation4.
Revenue String False The Revenue of the ClientCorporation4.
Standardpermfee Double False The Standardpermfee of the ClientCorporation4.
Status String False The Status of the ClientCorporation4.
TaxRate Double False The TaxRate of the ClientCorporation4.
TickerSymbol String False The TickerSymbol of the ClientCorporation4.
TrackTitle String False The TrackTitle of the ClientCorporation4.
TwitterHandle String False The TwitterHandle of the ClientCorporation4.
WorkWeekBegin Int False The WorkWeekBegin of the ClientCorporation4.
YearFounded Datetime False The YearFounded of the ClientCorporation4.

ClientCorporation5

Create, update, delete and query data of 'ClientCorporation5' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporation5.
Ofemployees Int False The Ofemployees of the ClientCorporation5.
Ofoffices Int False The Ofoffices of the ClientCorporation5.
AddressAddress String False The AddressAddress of the ClientCorporation5.
AddressAddress2 String False The AddressAddress2 of the ClientCorporation5.
AddressCity String False The AddressCity of the ClientCorporation5.
AddressCountry Int False The AddressCountry of the ClientCorporation5.
AddresscountryCode String False The AddresscountryCode of the ClientCorporation5.
AddresscountryName String False The AddresscountryName of the ClientCorporation5.
AddressState String False The AddressState of the ClientCorporation5.
AddressZip String False The AddressZip of the ClientCorporation5.
AnnualrevenueMillions String False The AnnualrevenueMillions of the ClientCorporation5.
BillingAddressAddress2 String False The BillingAddressAddress2 of the ClientCorporation5.
BillingAddressBillingAddress String False The BillingAddressBillingAddress of the ClientCorporation5.
BillingAddressBillingCity String False The BillingAddressBillingCity of the ClientCorporation5.
BillingAddressBillingCountry Int False The BillingAddressBillingCountry of the ClientCorporation5.
BillingAddressBillingState String False The BillingAddressBillingState of the ClientCorporation5.
BillingAddressBillingZip String False The BillingAddressBillingZip of the ClientCorporation5.
BillingAddresscountryCode String False The BillingAddresscountryCode of the ClientCorporation5.
BillingAddresscountryName String False The BillingAddresscountryName of the ClientCorporation5.
BillingContact String False The BillingContact of the ClientCorporation5.
BillingFrequency String False The BillingFrequency of the ClientCorporation5.
BillingPhone String False The BillingPhone of the ClientCorporation5.
BranchID Int False The BranchID of the ClientCorporation5.
BusinessSectors String False The BusinessSectors of the ClientCorporation5.
ClientOverview String False The ClientOverview of the ClientCorporation5.
CompanyDescription String False The CompanyDescription of the ClientCorporation5.
CompanyName String False The CompanyName of the ClientCorporation5.
CompanyURL String False The CompanyURL of the ClientCorporation5.
Competitors String False The Competitors of the ClientCorporation5.
CulturePerks String False The CulturePerks of the ClientCorporation5.
DateAdded Datetime False The DateAdded of the ClientCorporation5.
DateLastModified Datetime False The DateLastModified of the ClientCorporation5.
ExternalID String False The ExternalID of the ClientCorporation5.
FacebookProfileName String False The FacebookProfileName of the ClientCorporation5.
Fax String False The Fax of the ClientCorporation5.
FundingStatus String False The FundingStatus of the ClientCorporation5.
IndustryCategory String False The IndustryCategory of the ClientCorporation5.
InvoiceFormat String False The InvoiceFormat of the ClientCorporation5.
LinkedInProfileName String False The LinkedInProfileName of the ClientCorporation5.
ManagedFromId Int False The ManagedFromId of the ClientCorporation5.
Ownership String False The Ownership of the ClientCorporation5.
ParentCompanyId Int False The ParentCompanyId of the ClientCorporation5.
Phone String False The Phone of the ClientCorporation5.
Revenue String False The Revenue of the ClientCorporation5.
Standardpermfee Double False The Standardpermfee of the ClientCorporation5.
Status String False The Status of the ClientCorporation5.
TaxRate Double False The TaxRate of the ClientCorporation5.
TickerSymbol String False The TickerSymbol of the ClientCorporation5.
TrackTitle String False The TrackTitle of the ClientCorporation5.
TwitterHandle String False The TwitterHandle of the ClientCorporation5.
WorkWeekBegin Int False The WorkWeekBegin of the ClientCorporation5.
YearFounded Datetime False The YearFounded of the ClientCorporation5.

ClientCorporationAppointment

Create, update, delete and query data of 'ClientCorporationAppointment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationAppointment.
AppointmentId Int False The AppointmentId of the ClientCorporationAppointment.
ClientContactId Int False The ClientContactId of the ClientCorporationAppointment.
ClientCorporationId Int False The ClientCorporationId of the ClientCorporationAppointment.

ClientCorporationCertification

Create, update, delete and query data of 'ClientCorporationCertification' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationCertification.
CertificationId Int False The CertificationId of the ClientCorporationCertification.
ClientCorporationId Int False The ClientCorporationId of the ClientCorporationCertification.
Comments String False The Comments of the ClientCorporationCertification.
DateLastModified Datetime False The DateLastModified of the ClientCorporationCertification.
Location String False The Location of the ClientCorporationCertification.
MigrateGUID String False The MigrateGUID of the ClientCorporationCertification.
ModifyingUserId Int False The ModifyingUserId of the ClientCorporationCertification.
OffsetDays Int False The OffsetDays of the ClientCorporationCertification.
Quantity Int False The Quantity of the ClientCorporationCertification.
IsDeleted Bool False The IsDeleted of the ClientCorporationCertification.

ClientCorporationEditHistory

Create, update, delete and query data of 'ClientCorporationEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationEditHistory.
AuditTrail String False The AuditTrail of the ClientCorporationEditHistory.
DateAdded Datetime False The DateAdded of the ClientCorporationEditHistory.
MigrateGUID String False The MigrateGUID of the ClientCorporationEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the ClientCorporationEditHistory.
TargetEntityId Int False The TargetEntityId of the ClientCorporationEditHistory.
TransactionID String False The TransactionID of the ClientCorporationEditHistory.

ClientCorporationEditHistoryFieldChange

Create, update, delete and query data of 'ClientCorporationEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationEditHistoryFieldChange.
ColumnName String False The ColumnName of the ClientCorporationEditHistoryFieldChange.
Display String False The Display of the ClientCorporationEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the ClientCorporationEditHistoryFieldChange.
NewValue String False The NewValue of the ClientCorporationEditHistoryFieldChange.
OldValue String False The OldValue of the ClientCorporationEditHistoryFieldChange.

ClientCorporationFileAttachment

Create, update, delete and query data of 'ClientCorporationFileAttachment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationFileAttachment.
ClientCorporationId Int False The ClientCorporationId of the ClientCorporationFileAttachment.
ContentSubType String False The ContentSubType of the ClientCorporationFileAttachment.
ContentType String False The ContentType of the ClientCorporationFileAttachment.
DateAdded Datetime False The DateAdded of the ClientCorporationFileAttachment.
Description String False The Description of the ClientCorporationFileAttachment.
Directory String False The Directory of the ClientCorporationFileAttachment.
ExternalID String False The ExternalID of the ClientCorporationFileAttachment.
FileExtension String False The FileExtension of the ClientCorporationFileAttachment.
FileOwnerId Int False The FileOwnerId of the ClientCorporationFileAttachment.
FileSize Int False The FileSize of the ClientCorporationFileAttachment.
IsEncrypted Bool False The IsEncrypted of the ClientCorporationFileAttachment.
IsExternal Bool False The IsExternal of the ClientCorporationFileAttachment.
IsPrivate Bool False The IsPrivate of the ClientCorporationFileAttachment.
Name String False The Name of the ClientCorporationFileAttachment.
OwnerId Int False The OwnerId of the ClientCorporationFileAttachment.
Type String False The Type of the ClientCorporationFileAttachment.
Uuid String False The Uuid of the ClientCorporationFileAttachment.
IsDeleted Bool False The IsDeleted of the ClientCorporationFileAttachment.

ClientCorporationHistory

Create, update, delete and query data of 'ClientCorporationHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationHistory.
ClientCorporationId Int False The ClientCorporationId of the ClientCorporationHistory.
DateAdded Datetime False The DateAdded of the ClientCorporationHistory.
MigrateGUID String False The MigrateGUID of the ClientCorporationHistory.
ModifyingUserId Int False The ModifyingUserId of the ClientCorporationHistory.
Status String False The Status of the ClientCorporationHistory.

ClientCorporationNote

Create, update, delete and query data of 'ClientCorporationNote' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationNote.
ClientContactId Int False The ClientContactId of the ClientCorporationNote.
ClientCorporationId Int False The ClientCorporationId of the ClientCorporationNote.
NoteId Int False The NoteId of the ClientCorporationNote.

ClientCorporationTask

Create, update, delete and query data of 'ClientCorporationTask' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the ClientCorporationTask.
ClientContactId Int False The ClientContactId of the ClientCorporationTask.
ClientCorporationId Int False The ClientCorporationId of the ClientCorporationTask.
TaskId Int False The TaskId of the ClientCorporationTask.

CorporateUser

Create, update, delete and query data of 'CorporateUser' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CorporateUser.
Addressaddress1 String False The Addressaddress1 of the CorporateUser.
Addressaddress2 String False The Addressaddress2 of the CorporateUser.
Addresscity String False The Addresscity of the CorporateUser.
AddresscountryCode String False The AddresscountryCode of the CorporateUser.
AddresscountryID Int False The AddresscountryID of the CorporateUser.
AddresscountryName String False The AddresscountryName of the CorporateUser.
Addressstate String False The Addressstate of the CorporateUser.
Addresszip String False The Addresszip of the CorporateUser.
BranchId Int False The BranchId of the CorporateUser.
CompanyName String False The CompanyName of the CorporateUser.
DateLastComment Datetime False The DateLastComment of the CorporateUser.
DepartmentIdList String False The DepartmentIdList of the CorporateUser.
Email String False The Email of the CorporateUser.
Email2 String False The Email2 of the CorporateUser.
Email3 String False The Email3 of the CorporateUser.
EmailNotify Bool False The EmailNotify of the CorporateUser.
EmailSignature String False The EmailSignature of the CorporateUser.
Enabled Bool False The Enabled of the CorporateUser.
ExternalEmail String False The ExternalEmail of the CorporateUser.
Fax String False The Fax of the CorporateUser.
Fax2 String False The Fax2 of the CorporateUser.
Fax3 String False The Fax3 of the CorporateUser.
FirstName String False The FirstName of the CorporateUser.
InboundEmailEnabled Bool False The InboundEmailEnabled of the CorporateUser.
IsAnonymized Bool False The IsAnonymized of the CorporateUser.
IsDayLightSavings Bool False The IsDayLightSavings of the CorporateUser.
IsHidden Int False The IsHidden of the CorporateUser.
IsLockedOut Bool False The IsLockedOut of the CorporateUser.
IsOutboundFaxEnabled Bool False The IsOutboundFaxEnabled of the CorporateUser.
LastName String False The LastName of the CorporateUser.
LoginRestrictions String False The LoginRestrictions of the CorporateUser.
MassMailOptOut Bool False The MassMailOptOut of the CorporateUser.
MasterUserID Int False The MasterUserID of the CorporateUser.
MiddleName String False The MiddleName of the CorporateUser.
Mobile String False The Mobile of the CorporateUser.
Name String False The Name of the CorporateUser.
NamePrefix String False The NamePrefix of the CorporateUser.
NameSuffix String False The NameSuffix of the CorporateUser.
NickName String False The NickName of the CorporateUser.
Occupation String False The Occupation of the CorporateUser.
Pager String False The Pager of the CorporateUser.
PersonSubtype String False The PersonSubtype of the CorporateUser.
Phone String False The Phone of the CorporateUser.
Phone2 String False The Phone2 of the CorporateUser.
Phone3 String False The Phone3 of the CorporateUser.
PrimaryDepartmentId Int False The PrimaryDepartmentId of the CorporateUser.
ReportToPersonId Int False The ReportToPersonId of the CorporateUser.
Status String False The Status of the CorporateUser.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the CorporateUser.
UserDateAdded Datetime False The UserDateAdded of the CorporateUser.
Username String False The Username of the CorporateUser.
UserTypeId Int False The UserTypeId of the CorporateUser.
IsDeleted Bool False The IsDeleted of the CorporateUser.

CorporationDepartment

Create, update, delete and query data of 'CorporationDepartment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the CorporationDepartment.
DateAdded Datetime False The DateAdded of the CorporationDepartment.
Description String False The Description of the CorporationDepartment.
Enabled Bool False The Enabled of the CorporationDepartment.
Name String False The Name of the CorporationDepartment.

Country

Create, update, delete and query data of 'Country' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Country.
Code String False The Code of the Country.
Name String False The Name of the Country.

Department

Create, update, delete and query data of 'Department' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Department.
Description String False The Description of the Department.
Enabled Bool False The Enabled of the Department.
Name String False The Name of the Department.

EntityFieldTypeLookup

Create, update, delete and query data of 'EntityFieldTypeLookup' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the EntityFieldTypeLookup.
Label String False The Label of the EntityFieldTypeLookup.
IsDeleted Bool False The IsDeleted of the EntityFieldTypeLookup.

GoalTarget

Create, update, delete and query data of 'GoalTarget' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the GoalTarget.
EndDate Date False The EndDate of the GoalTarget.
GoalId Int False The GoalId of the GoalTarget.
GoalPeriodId Int False The GoalPeriodId of the GoalTarget.
Periodname String False The Periodname of the GoalTarget.
StartDate Date False The StartDate of the GoalTarget.
Target Int False The Target of the GoalTarget.
UserId Int False The UserId of the GoalTarget.

HousingComplex

Create, update, delete and query data of 'HousingComplex' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the HousingComplex.
AddressAddress String False The AddressAddress of the HousingComplex.
AddressAddress2 String False The AddressAddress2 of the HousingComplex.
AddressCity String False The AddressCity of the HousingComplex.
AddressCountry Int False The AddressCountry of the HousingComplex.
AddresscountryCode String False The AddresscountryCode of the HousingComplex.
AddresscountryName String False The AddresscountryName of the HousingComplex.
AddressState String False The AddressState of the HousingComplex.
AddressZip String False The AddressZip of the HousingComplex.
BillingContact Int False The BillingContact of the HousingComplex.
Comments String False The Comments of the HousingComplex.
ComplexManager Int False The ComplexManager of the HousingComplex.
ComplexOwner Int False The ComplexOwner of the HousingComplex.
DateAdded Datetime False The DateAdded of the HousingComplex.
Fax String False The Fax of the HousingComplex.
MigrateGUID String False The MigrateGUID of the HousingComplex.
Name String False The Name of the HousingComplex.
OwnerId Int False The OwnerId of the HousingComplex.
Phone String False The Phone of the HousingComplex.
PrimaryContact String False The PrimaryContact of the HousingComplex.
ZipId Int False The ZipId of the HousingComplex.
IsDeleted Bool False The IsDeleted of the HousingComplex.

HousingComplexAmenity

Create, update, delete and query data of 'HousingComplexAmenity' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the HousingComplexAmenity.
AmenityName String False The AmenityName of the HousingComplexAmenity.
DateAdded Datetime False The DateAdded of the HousingComplexAmenity.
MigrateGUID String False The MigrateGUID of the HousingComplexAmenity.
IsDeleted Bool False The IsDeleted of the HousingComplexAmenity.

HousingComplexFurnitureDelivery

Create, update, delete and query data of 'HousingComplexFurnitureDelivery' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the HousingComplexFurnitureDelivery.
AddressAddress String False The AddressAddress of the HousingComplexFurnitureDelivery.
AddressAddress2 String False The AddressAddress2 of the HousingComplexFurnitureDelivery.
AddressCity String False The AddressCity of the HousingComplexFurnitureDelivery.
AddressCountry Int False The AddressCountry of the HousingComplexFurnitureDelivery.
AddresscountryCode String False The AddresscountryCode of the HousingComplexFurnitureDelivery.
AddresscountryName String False The AddresscountryName of the HousingComplexFurnitureDelivery.
AddressState String False The AddressState of the HousingComplexFurnitureDelivery.
AddressZip String False The AddressZip of the HousingComplexFurnitureDelivery.
BillingContact Int False The BillingContact of the HousingComplexFurnitureDelivery.
Comments String False The Comments of the HousingComplexFurnitureDelivery.
DateAdded Datetime False The DateAdded of the HousingComplexFurnitureDelivery.
DeliveryDate Datetime False The DeliveryDate of the HousingComplexFurnitureDelivery.
Fax String False The Fax of the HousingComplexFurnitureDelivery.
MigrateGUID String False The MigrateGUID of the HousingComplexFurnitureDelivery.
Name String False The Name of the HousingComplexFurnitureDelivery.
OrderDate Datetime False The OrderDate of the HousingComplexFurnitureDelivery.
Phone String False The Phone of the HousingComplexFurnitureDelivery.
PickupDate Datetime False The PickupDate of the HousingComplexFurnitureDelivery.
PrimaryContact String False The PrimaryContact of the HousingComplexFurnitureDelivery.
UnitId Int False The UnitId of the HousingComplexFurnitureDelivery.
IsDeleted Bool False The IsDeleted of the HousingComplexFurnitureDelivery.

HousingComplexUnit

Create, update, delete and query data of 'HousingComplexUnit' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the HousingComplexUnit.
BillingContact Int False The BillingContact of the HousingComplexUnit.
Comments String False The Comments of the HousingComplexUnit.
DateAdded Datetime False The DateAdded of the HousingComplexUnit.
DateofDeposit Datetime False The DateofDeposit of the HousingComplexUnit.
DateofRefund Datetime False The DateofRefund of the HousingComplexUnit.
DepositisRefundable Bool False The DepositisRefundable of the HousingComplexUnit.
FirstMonthProRate String False The FirstMonthProRate of the HousingComplexUnit.
HousingComplexId Int False The HousingComplexId of the HousingComplexUnit.
LeaseEnd Datetime False The LeaseEnd of the HousingComplexUnit.
LeaseOnFile Bool False The LeaseOnFile of the HousingComplexUnit.
LeaseStart Datetime False The LeaseStart of the HousingComplexUnit.
MaximumOfoccupants Int False The MaximumOfoccupants of the HousingComplexUnit.
MigrateGUID String False The MigrateGUID of the HousingComplexUnit.
MonthlyRent String False The MonthlyRent of the HousingComplexUnit.
Name String False The Name of the HousingComplexUnit.
Occupants Int False The Occupants of the HousingComplexUnit.
Penalties String False The Penalties of the HousingComplexUnit.
SecuriyDeposit String False The SecuriyDeposit of the HousingComplexUnit.
UnitManager Int False The UnitManager of the HousingComplexUnit.
IsDeleted Bool False The IsDeleted of the HousingComplexUnit.

HousingComplexUtilityAccount

Create, update, delete and query data of 'HousingComplexUtilityAccount' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the HousingComplexUtilityAccount.
Account String False The Account of the HousingComplexUtilityAccount.
AddressAddress String False The AddressAddress of the HousingComplexUtilityAccount.
AddressAddress2 String False The AddressAddress2 of the HousingComplexUtilityAccount.
AddressCity String False The AddressCity of the HousingComplexUtilityAccount.
AddressCountry Int False The AddressCountry of the HousingComplexUtilityAccount.
AddresscountryCode String False The AddresscountryCode of the HousingComplexUtilityAccount.
AddresscountryName String False The AddresscountryName of the HousingComplexUtilityAccount.
AddressState String False The AddressState of the HousingComplexUtilityAccount.
AddressZip String False The AddressZip of the HousingComplexUtilityAccount.
BillingContact Int False The BillingContact of the HousingComplexUtilityAccount.
Comments String False The Comments of the HousingComplexUtilityAccount.
DateAdded Datetime False The DateAdded of the HousingComplexUtilityAccount.
DateConnected Datetime False The DateConnected of the HousingComplexUtilityAccount.
DateDisconnected Datetime False The DateDisconnected of the HousingComplexUtilityAccount.
Deposit String False The Deposit of the HousingComplexUtilityAccount.
Fax String False The Fax of the HousingComplexUtilityAccount.
MigrateGUID String False The MigrateGUID of the HousingComplexUtilityAccount.
Name String False The Name of the HousingComplexUtilityAccount.
Phone String False The Phone of the HousingComplexUtilityAccount.
Type String False The Type of the HousingComplexUtilityAccount.
UnitId Int False The UnitId of the HousingComplexUtilityAccount.
IsDeleted Bool False The IsDeleted of the HousingComplexUtilityAccount.

JobBoardPost

Create, update, delete and query data of 'JobBoardPost' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobBoardPost.
Addressaddress1 String False The Addressaddress1 of the JobBoardPost.
Addresscity String False The Addresscity of the JobBoardPost.
AddresscountryID Int False The AddresscountryID of the JobBoardPost.
Addressstate String False The Addressstate of the JobBoardPost.
Addresszip String False The Addresszip of the JobBoardPost.
Benefits String False The Benefits of the JobBoardPost.
BhTimestamp String False The BhTimestamp of the JobBoardPost.
BillRateCategoryID Int False The BillRateCategoryID of the JobBoardPost.
BonusPackage String False The BonusPackage of the JobBoardPost.
BranchCode String False The BranchCode of the JobBoardPost.
BranchId Int False The BranchId of the JobBoardPost.
CertificationList String False The CertificationList of the JobBoardPost.
ClientBillRate String False The ClientBillRate of the JobBoardPost.
ClientContactId Int False The ClientContactId of the JobBoardPost.
ClientCorporationId Int False The ClientCorporationId of the JobBoardPost.
CompanyDescription String False The CompanyDescription of the JobBoardPost.
CostCenter String False The CostCenter of the JobBoardPost.
DateAdded Datetime False The DateAdded of the JobBoardPost.
DateClientInterview Datetime False The DateClientInterview of the JobBoardPost.
DateClosed Datetime False The DateClosed of the JobBoardPost.
DateEnd Datetime False The DateEnd of the JobBoardPost.
DateLastExported Datetime False The DateLastExported of the JobBoardPost.
DateLastModified Datetime False The DateLastModified of the JobBoardPost.
DateLastPublished Datetime False The DateLastPublished of the JobBoardPost.
DegreeList String False The DegreeList of the JobBoardPost.
Description String False The Description of the JobBoardPost.
DurationWeeks Double False The DurationWeeks of the JobBoardPost.
EducationDegree String False The EducationDegree of the JobBoardPost.
EmploymentType String False The EmploymentType of the JobBoardPost.
ExternalCategoryID Int False The ExternalCategoryID of the JobBoardPost.
ExternalID String False The ExternalID of the JobBoardPost.
FeeArrangement Double False The FeeArrangement of the JobBoardPost.
HoursOfOperation String False The HoursOfOperation of the JobBoardPost.
HoursPerWeek Double False The HoursPerWeek of the JobBoardPost.
IsClientContact Bool False The IsClientContact of the JobBoardPost.
IsClientEditable Bool False The IsClientEditable of the JobBoardPost.
IsExtendable Bool False The IsExtendable of the JobBoardPost.
IsInterviewRequired Bool False The IsInterviewRequired of the JobBoardPost.
IsJobcastPublished Bool False The IsJobcastPublished of the JobBoardPost.
IsOpen Bool False The IsOpen of the JobBoardPost.
IsPublic Int False The IsPublic of the JobBoardPost.
JobBoardList String False The JobBoardList of the JobBoardPost.
JobOrderUUID String False The JobOrderUUID of the JobBoardPost.
LocationId Int False The LocationId of the JobBoardPost.
MarkUpPercentage Double False The MarkUpPercentage of the JobBoardPost.
MigrateGUID String False The MigrateGUID of the JobBoardPost.
NumOpenings Int False The NumOpenings of the JobBoardPost.
OnSite String False The OnSite of the JobBoardPost.
OptionsPackage String False The OptionsPackage of the JobBoardPost.
OwnerId Int False The OwnerId of the JobBoardPost.
ParentJobOrderId Int False The ParentJobOrderId of the JobBoardPost.
PayRate String False The PayRate of the JobBoardPost.
PublicDescription String False The PublicDescription of the JobBoardPost.
PublishedCategoryId Int False The PublishedCategoryId of the JobBoardPost.
PublishedZip String False The PublishedZip of the JobBoardPost.
ReasonClosed String False The ReasonClosed of the JobBoardPost.
ReportTo String False The ReportTo of the JobBoardPost.
ReportToClientContactId Int False The ReportToClientContactId of the JobBoardPost.
ResponseUserId Int False The ResponseUserId of the JobBoardPost.
Salary String False The Salary of the JobBoardPost.
SalaryRange String False The SalaryRange of the JobBoardPost.
SalaryUnit String False The SalaryUnit of the JobBoardPost.
ShiftId Int False The ShiftId of the JobBoardPost.
SkillList String False The SkillList of the JobBoardPost.
Source String False The Source of the JobBoardPost.
StartDate Datetime False The StartDate of the JobBoardPost.
Status String False The Status of the JobBoardPost.
TaxRate Double False The TaxRate of the JobBoardPost.
TaxStatus String False The TaxStatus of the JobBoardPost.
Title String False The Title of the JobBoardPost.
TravelRequirements String False The TravelRequirements of the JobBoardPost.
Type Int False The Type of the JobBoardPost.
UsersAssigned String False The UsersAssigned of the JobBoardPost.
WillRelocate Bool False The WillRelocate of the JobBoardPost.
WillRelocateInt Int False The WillRelocateInt of the JobBoardPost.
WillSponsor Bool False The WillSponsor of the JobBoardPost.
WorkersCompRateId Int False The WorkersCompRateId of the JobBoardPost.
YearsRequired Int False The YearsRequired of the JobBoardPost.
IsDeleted Bool False The IsDeleted of the JobBoardPost.

JobOrder

Create, update, delete and query data of 'JobOrder' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrder.
Ofopenings Int False The Ofopenings of the JobOrder.
AddressAddress String False The AddressAddress of the JobOrder.
AddressCity String False The AddressCity of the JobOrder.
AddressCountry Int False The AddressCountry of the JobOrder.
AddressStateorProvince String False The AddressStateorProvince of the JobOrder.
AddressZip String False The AddressZip of the JobOrder.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the JobOrder.
Benefits String False The Benefits of the JobOrder.
BillRateCategory Int False The BillRateCategory of the JobOrder.
BonusPackage String False The BonusPackage of the JobOrder.
Branch String False The Branch of the JobOrder.
BranchID Int False The BranchID of the JobOrder.
CertificationRequirements String False The CertificationRequirements of the JobOrder.
ClientBillRate String False The ClientBillRate of the JobOrder.
ClientCompanyId Int False The ClientCompanyId of the JobOrder.
ClientCostCenter String False The ClientCostCenter of the JobOrder.
ContactId Int False The ContactId of the JobOrder.
DateAdded Datetime False The DateAdded of the JobOrder.
DateClosed Datetime False The DateClosed of the JobOrder.
DateLastExported Datetime False The DateLastExported of the JobOrder.
DateLastPublished Datetime False The DateLastPublished of the JobOrder.
DegreeRequirements String False The DegreeRequirements of the JobOrder.
EducationRequirements String False The EducationRequirements of the JobOrder.
EmploymentType String False The EmploymentType of the JobOrder.
ExternalID String False The ExternalID of the JobOrder.
HourlyCommitment Double False The HourlyCommitment of the JobOrder.
HoursofOperation String False The HoursofOperation of the JobOrder.
Interviewrequired Bool False The Interviewrequired of the JobOrder.
JobDescription String False The JobDescription of the JobOrder.
JobDuration Double False The JobDuration of the JobOrder.
JobTitle String False The JobTitle of the JobOrder.
Keywords String False The Keywords of the JobOrder.
LastUpdated Datetime False The LastUpdated of the JobOrder.
LocationId Int False The LocationId of the JobOrder.
LocationRequirements String False The LocationRequirements of the JobOrder.
MarkUp Double False The MarkUp of the JobOrder.
MinimumExperience Int False The MinimumExperience of the JobOrder.
NumberofEmployees Bool False The NumberofEmployees of the JobOrder.
OpenClosed Bool False The OpenClosed of the JobOrder.
OptionsPackage String False The OptionsPackage of the JobOrder.
OwnerId Int False The OwnerId of the JobOrder.
PayRate String False The PayRate of the JobOrder.
PayRate2 String False The PayRate2 of the JobOrder.
Permfee Double False The Permfee of the JobOrder.
PremiumJobBoards String False The PremiumJobBoards of the JobOrder.
Priority Int False The Priority of the JobOrder.
PublicCategory Int False The PublicCategory of the JobOrder.
PublishedCategoryId Int False The PublishedCategoryId of the JobOrder.
PublishedContactInfoId Int False The PublishedContactInfoId of the JobOrder.
PublishedDescription String False The PublishedDescription of the JobOrder.
PublishedZipCode String False The PublishedZipCode of the JobOrder.
PublishtoCorporateWeb Int False The PublishtoCorporateWeb of the JobOrder.
ReasonClosed String False The ReasonClosed of the JobOrder.
ReportingtoContactId Int False The ReportingtoContactId of the JobOrder.
ReportingtoOther String False The ReportingtoOther of the JobOrder.
Salary String False The Salary of the JobOrder.
ScheduledEnd Datetime False The ScheduledEnd of the JobOrder.
ShiftId Int False The ShiftId of the JobOrder.
Source String False The Source of the JobOrder.
StartDate Datetime False The StartDate of the JobOrder.
Status String False The Status of the JobOrder.
Tax Double False The Tax of the JobOrder.
TaxPreference String False The TaxPreference of the JobOrder.
TravelRequirements String False The TravelRequirements of the JobOrder.
UsersAssigned String False The UsersAssigned of the JobOrder.
VisaSponsorshipProvided Bool False The VisaSponsorshipProvided of the JobOrder.
Willrelocate Int False The Willrelocate of the JobOrder.
WillRelocateBoolean Bool False The WillRelocateBoolean of the JobOrder.
WorkersCompCodeId Int False The WorkersCompCodeId of the JobOrder.
IsDeleted Bool False The IsDeleted of the JobOrder.

JobOrder1

Create, update, delete and query data of 'JobOrder1' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrder1.
Ofopenings Int False The Ofopenings of the JobOrder1.
AddressAddress String False The AddressAddress of the JobOrder1.
AddressCity String False The AddressCity of the JobOrder1.
AddressCountry Int False The AddressCountry of the JobOrder1.
AddressStateorProvince String False The AddressStateorProvince of the JobOrder1.
AddressZip String False The AddressZip of the JobOrder1.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the JobOrder1.
Benefits String False The Benefits of the JobOrder1.
BillRateCategory Int False The BillRateCategory of the JobOrder1.
BonusPackage String False The BonusPackage of the JobOrder1.
Branch String False The Branch of the JobOrder1.
BranchID Int False The BranchID of the JobOrder1.
CertificationRequirements String False The CertificationRequirements of the JobOrder1.
ClientBillRate String False The ClientBillRate of the JobOrder1.
ClientCompanyId Int False The ClientCompanyId of the JobOrder1.
ClientCostCenter String False The ClientCostCenter of the JobOrder1.
ContactId Int False The ContactId of the JobOrder1.
DateAdded Datetime False The DateAdded of the JobOrder1.
DateClosed Datetime False The DateClosed of the JobOrder1.
DateLastExported Datetime False The DateLastExported of the JobOrder1.
DateLastPublished Datetime False The DateLastPublished of the JobOrder1.
DegreeRequirements String False The DegreeRequirements of the JobOrder1.
EducationRequirements String False The EducationRequirements of the JobOrder1.
EmploymentType String False The EmploymentType of the JobOrder1.
ExternalID String False The ExternalID of the JobOrder1.
HourlyCommitment Double False The HourlyCommitment of the JobOrder1.
HoursofOperation String False The HoursofOperation of the JobOrder1.
Interviewrequired Bool False The Interviewrequired of the JobOrder1.
JobDescription String False The JobDescription of the JobOrder1.
JobDuration Double False The JobDuration of the JobOrder1.
JobTitle String False The JobTitle of the JobOrder1.
Keywords String False The Keywords of the JobOrder1.
LastUpdated Datetime False The LastUpdated of the JobOrder1.
LocationId Int False The LocationId of the JobOrder1.
LocationRequirements String False The LocationRequirements of the JobOrder1.
MarkUp Double False The MarkUp of the JobOrder1.
MinimumExperience Int False The MinimumExperience of the JobOrder1.
NumberofEmployees Bool False The NumberofEmployees of the JobOrder1.
OpenClosed Bool False The OpenClosed of the JobOrder1.
OptionsPackage String False The OptionsPackage of the JobOrder1.
OwnerId Int False The OwnerId of the JobOrder1.
PayRate String False The PayRate of the JobOrder1.
PayRate2 String False The PayRate2 of the JobOrder1.
Permfee Double False The Permfee of the JobOrder1.
PremiumJobBoards String False The PremiumJobBoards of the JobOrder1.
Priority Int False The Priority of the JobOrder1.
PublicCategory Int False The PublicCategory of the JobOrder1.
PublishedCategoryId Int False The PublishedCategoryId of the JobOrder1.
PublishedContactInfoId Int False The PublishedContactInfoId of the JobOrder1.
PublishedDescription String False The PublishedDescription of the JobOrder1.
PublishedZipCode String False The PublishedZipCode of the JobOrder1.
PublishtoCorporateWeb Int False The PublishtoCorporateWeb of the JobOrder1.
ReasonClosed String False The ReasonClosed of the JobOrder1.
ReportingtoContactId Int False The ReportingtoContactId of the JobOrder1.
ReportingtoOther String False The ReportingtoOther of the JobOrder1.
Salary String False The Salary of the JobOrder1.
ScheduledEnd Datetime False The ScheduledEnd of the JobOrder1.
ShiftId Int False The ShiftId of the JobOrder1.
Source String False The Source of the JobOrder1.
StartDate Datetime False The StartDate of the JobOrder1.
Status String False The Status of the JobOrder1.
Tax Double False The Tax of the JobOrder1.
TaxPreference String False The TaxPreference of the JobOrder1.
TravelRequirements String False The TravelRequirements of the JobOrder1.
UsersAssigned String False The UsersAssigned of the JobOrder1.
VisaSponsorshipProvided Bool False The VisaSponsorshipProvided of the JobOrder1.
Willrelocate Int False The Willrelocate of the JobOrder1.
WillRelocateBoolean Bool False The WillRelocateBoolean of the JobOrder1.
WorkersCompCodeId Int False The WorkersCompCodeId of the JobOrder1.
IsDeleted Bool False The IsDeleted of the JobOrder1.

JobOrder2

Create, update, delete and query data of 'JobOrder2' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrder2.
Ofopenings Int False The Ofopenings of the JobOrder2.
AdditionalKeywords String False The AdditionalKeywords of the JobOrder2.
AddressAddress String False The AddressAddress of the JobOrder2.
AddressCity String False The AddressCity of the JobOrder2.
AddressCountry Int False The AddressCountry of the JobOrder2.
AddressState String False The AddressState of the JobOrder2.
AddressZip String False The AddressZip of the JobOrder2.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the JobOrder2.
Benefits String False The Benefits of the JobOrder2.
BillRateCategory Int False The BillRateCategory of the JobOrder2.
BonusPackage String False The BonusPackage of the JobOrder2.
Branch String False The Branch of the JobOrder2.
BranchID Int False The BranchID of the JobOrder2.
CertificationRequirements String False The CertificationRequirements of the JobOrder2.
ClientBillRate String False The ClientBillRate of the JobOrder2.
ClientCompanyId Int False The ClientCompanyId of the JobOrder2.
ClientCostCenter String False The ClientCostCenter of the JobOrder2.
ContactId Int False The ContactId of the JobOrder2.
DateAdded Datetime False The DateAdded of the JobOrder2.
DateClosed Datetime False The DateClosed of the JobOrder2.
DateLastExported Datetime False The DateLastExported of the JobOrder2.
DateLastPublished Datetime False The DateLastPublished of the JobOrder2.
DegreeRequirements String False The DegreeRequirements of the JobOrder2.
EducationRequirements String False The EducationRequirements of the JobOrder2.
Employment String False The Employment of the JobOrder2.
ExternalID String False The ExternalID of the JobOrder2.
HourlyCommitment Double False The HourlyCommitment of the JobOrder2.
HoursofOperation String False The HoursofOperation of the JobOrder2.
Interviewrequired Bool False The Interviewrequired of the JobOrder2.
JobBoardList String False The JobBoardList of the JobOrder2.
JobBoardPublishing Int False The JobBoardPublishing of the JobOrder2.
JobDescription String False The JobDescription of the JobOrder2.
JobDuration Double False The JobDuration of the JobOrder2.
JobTitle String False The JobTitle of the JobOrder2.
LastUpdated Datetime False The LastUpdated of the JobOrder2.
LocationId Int False The LocationId of the JobOrder2.
LocationRequirements String False The LocationRequirements of the JobOrder2.
MarkUp Double False The MarkUp of the JobOrder2.
MinimumExperience Int False The MinimumExperience of the JobOrder2.
NumberofEmployees Bool False The NumberofEmployees of the JobOrder2.
OpenClosed Bool False The OpenClosed of the JobOrder2.
OptionsPackage String False The OptionsPackage of the JobOrder2.
OwnerId Int False The OwnerId of the JobOrder2.
PayRate String False The PayRate of the JobOrder2.
PayRate2 String False The PayRate2 of the JobOrder2.
Permfee Double False The Permfee of the JobOrder2.
Priority Int False The Priority of the JobOrder2.
PublicCategory Int False The PublicCategory of the JobOrder2.
PublishedCategoryId Int False The PublishedCategoryId of the JobOrder2.
PublishedContactInfoId Int False The PublishedContactInfoId of the JobOrder2.
PublishedDescription String False The PublishedDescription of the JobOrder2.
PublishedZipCode String False The PublishedZipCode of the JobOrder2.
ReasonClosed String False The ReasonClosed of the JobOrder2.
ReportingtoContactId Int False The ReportingtoContactId of the JobOrder2.
ReportingtoOther String False The ReportingtoOther of the JobOrder2.
Salary String False The Salary of the JobOrder2.
ScheduledEnd Datetime False The ScheduledEnd of the JobOrder2.
ShiftId Int False The ShiftId of the JobOrder2.
Source String False The Source of the JobOrder2.
StartDate Datetime False The StartDate of the JobOrder2.
Status String False The Status of the JobOrder2.
Tax Double False The Tax of the JobOrder2.
TaxPreference String False The TaxPreference of the JobOrder2.
TravelRequirements String False The TravelRequirements of the JobOrder2.
UsersAssigned String False The UsersAssigned of the JobOrder2.
VisaSponsorshipProvided Bool False The VisaSponsorshipProvided of the JobOrder2.
Willrelocate Int False The Willrelocate of the JobOrder2.
WillRelocateBoolean Bool False The WillRelocateBoolean of the JobOrder2.
WorkersCompCodeId Int False The WorkersCompCodeId of the JobOrder2.
IsDeleted Bool False The IsDeleted of the JobOrder2.

JobOrder3

Create, update, delete and query data of 'JobOrder3' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrder3.
Ofopenings Int False The Ofopenings of the JobOrder3.
AdditionalskillsKeywords String False The AdditionalskillsKeywords of the JobOrder3.
AddressAddress String False The AddressAddress of the JobOrder3.
AddressCity String False The AddressCity of the JobOrder3.
AddressCountry Int False The AddressCountry of the JobOrder3.
AddressStateorProvince String False The AddressStateorProvince of the JobOrder3.
AddresszipPostalcode String False The AddresszipPostalcode of the JobOrder3.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the JobOrder3.
Benefits String False The Benefits of the JobOrder3.
BillRateCategory Int False The BillRateCategory of the JobOrder3.
BonusPackage String False The BonusPackage of the JobOrder3.
Branch String False The Branch of the JobOrder3.
BranchID Int False The BranchID of the JobOrder3.
CertificationRequirements String False The CertificationRequirements of the JobOrder3.
ClientBillRate String False The ClientBillRate of the JobOrder3.
ClientCompanyId Int False The ClientCompanyId of the JobOrder3.
ClientCostCenter String False The ClientCostCenter of the JobOrder3.
ContactId Int False The ContactId of the JobOrder3.
DateAdded Datetime False The DateAdded of the JobOrder3.
DateClosed Datetime False The DateClosed of the JobOrder3.
DateLastExported Datetime False The DateLastExported of the JobOrder3.
DateLastPublished Datetime False The DateLastPublished of the JobOrder3.
DegreeRequirements String False The DegreeRequirements of the JobOrder3.
EducationRequirements String False The EducationRequirements of the JobOrder3.
Employment String False The Employment of the JobOrder3.
ExternalID String False The ExternalID of the JobOrder3.
HourlyCommitment Double False The HourlyCommitment of the JobOrder3.
HoursofOperation String False The HoursofOperation of the JobOrder3.
Interviewrequired Bool False The Interviewrequired of the JobOrder3.
JobBoardList String False The JobBoardList of the JobOrder3.
JobBoardPublishing Int False The JobBoardPublishing of the JobOrder3.
JobDescription String False The JobDescription of the JobOrder3.
JobDuration Double False The JobDuration of the JobOrder3.
JobTitle String False The JobTitle of the JobOrder3.
LastUpdated Datetime False The LastUpdated of the JobOrder3.
LocationId Int False The LocationId of the JobOrder3.
LocationRequirements String False The LocationRequirements of the JobOrder3.
MarkUp Double False The MarkUp of the JobOrder3.
MinimumExperience Int False The MinimumExperience of the JobOrder3.
NumberofEmployees Bool False The NumberofEmployees of the JobOrder3.
OpenClosed Bool False The OpenClosed of the JobOrder3.
OptionsPackage String False The OptionsPackage of the JobOrder3.
OwnerId Int False The OwnerId of the JobOrder3.
PayRate String False The PayRate of the JobOrder3.
PayRate2 String False The PayRate2 of the JobOrder3.
Permfee Double False The Permfee of the JobOrder3.
Priority Int False The Priority of the JobOrder3.
PublicCategory Int False The PublicCategory of the JobOrder3.
PublishedCategoryId Int False The PublishedCategoryId of the JobOrder3.
PublishedContactInfoId Int False The PublishedContactInfoId of the JobOrder3.
PublishedDescription String False The PublishedDescription of the JobOrder3.
PublishedZipCode String False The PublishedZipCode of the JobOrder3.
ReasonClosed String False The ReasonClosed of the JobOrder3.
ReportingtoContactId Int False The ReportingtoContactId of the JobOrder3.
ReportingtoOther String False The ReportingtoOther of the JobOrder3.
Salary String False The Salary of the JobOrder3.
ScheduledEnd Datetime False The ScheduledEnd of the JobOrder3.
ShiftId Int False The ShiftId of the JobOrder3.
Source String False The Source of the JobOrder3.
StartDate Datetime False The StartDate of the JobOrder3.
Status String False The Status of the JobOrder3.
Tax Double False The Tax of the JobOrder3.
TaxPreference String False The TaxPreference of the JobOrder3.
TravelRequirements String False The TravelRequirements of the JobOrder3.
UsersAssigned String False The UsersAssigned of the JobOrder3.
VisaSponsorshipProvided Bool False The VisaSponsorshipProvided of the JobOrder3.
Willrelocate Int False The Willrelocate of the JobOrder3.
WillRelocateBoolean Bool False The WillRelocateBoolean of the JobOrder3.
WorkersCompCodeId Int False The WorkersCompCodeId of the JobOrder3.
IsDeleted Bool False The IsDeleted of the JobOrder3.

JobOrder4

Create, update, delete and query data of 'JobOrder4' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrder4.
Ofopenings Int False The Ofopenings of the JobOrder4.
AdditionalskillsKeywords String False The AdditionalskillsKeywords of the JobOrder4.
AddressAddress String False The AddressAddress of the JobOrder4.
AddressCity String False The AddressCity of the JobOrder4.
AddressCountry Int False The AddressCountry of the JobOrder4.
AddressStateorProvince String False The AddressStateorProvince of the JobOrder4.
AddresszipPostalcode String False The AddresszipPostalcode of the JobOrder4.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the JobOrder4.
Benefits String False The Benefits of the JobOrder4.
BillRateCategory Int False The BillRateCategory of the JobOrder4.
BonusPackage String False The BonusPackage of the JobOrder4.
Branch String False The Branch of the JobOrder4.
BranchID Int False The BranchID of the JobOrder4.
CertificationRequirements String False The CertificationRequirements of the JobOrder4.
ClientBillRate String False The ClientBillRate of the JobOrder4.
ClientCompanyId Int False The ClientCompanyId of the JobOrder4.
ClientCostCenter String False The ClientCostCenter of the JobOrder4.
ContactId Int False The ContactId of the JobOrder4.
DateAdded Datetime False The DateAdded of the JobOrder4.
DateClosed Datetime False The DateClosed of the JobOrder4.
DateLastExported Datetime False The DateLastExported of the JobOrder4.
DateLastPublished Datetime False The DateLastPublished of the JobOrder4.
DegreeRequirements String False The DegreeRequirements of the JobOrder4.
EducationRequirements String False The EducationRequirements of the JobOrder4.
Employment String False The Employment of the JobOrder4.
ExternalID String False The ExternalID of the JobOrder4.
HourlyCommitment Double False The HourlyCommitment of the JobOrder4.
HoursofOperation String False The HoursofOperation of the JobOrder4.
Interviewrequired Bool False The Interviewrequired of the JobOrder4.
JobBoardList String False The JobBoardList of the JobOrder4.
JobBoardPublishing Int False The JobBoardPublishing of the JobOrder4.
JobDescription String False The JobDescription of the JobOrder4.
JobDuration Double False The JobDuration of the JobOrder4.
JobTitle String False The JobTitle of the JobOrder4.
LastUpdated Datetime False The LastUpdated of the JobOrder4.
LocationId Int False The LocationId of the JobOrder4.
LocationRequirements String False The LocationRequirements of the JobOrder4.
MarkUp Double False The MarkUp of the JobOrder4.
MinimumExperience Int False The MinimumExperience of the JobOrder4.
NumberofEmployees Bool False The NumberofEmployees of the JobOrder4.
OpenClosed Bool False The OpenClosed of the JobOrder4.
OptionsPackage String False The OptionsPackage of the JobOrder4.
OwnerId Int False The OwnerId of the JobOrder4.
PayRate String False The PayRate of the JobOrder4.
PayRate2 String False The PayRate2 of the JobOrder4.
Permfee Double False The Permfee of the JobOrder4.
Priority Int False The Priority of the JobOrder4.
PublicCategory Int False The PublicCategory of the JobOrder4.
PublishedCategoryId Int False The PublishedCategoryId of the JobOrder4.
PublishedContactInfoId Int False The PublishedContactInfoId of the JobOrder4.
PublishedDescription String False The PublishedDescription of the JobOrder4.
PublishedZipCode String False The PublishedZipCode of the JobOrder4.
ReasonClosed String False The ReasonClosed of the JobOrder4.
ReportingtoContactId Int False The ReportingtoContactId of the JobOrder4.
ReportingtoOther String False The ReportingtoOther of the JobOrder4.
Salary String False The Salary of the JobOrder4.
ScheduledEnd Datetime False The ScheduledEnd of the JobOrder4.
ShiftId Int False The ShiftId of the JobOrder4.
Source String False The Source of the JobOrder4.
StartDate Datetime False The StartDate of the JobOrder4.
Status String False The Status of the JobOrder4.
Tax Double False The Tax of the JobOrder4.
TaxPreference String False The TaxPreference of the JobOrder4.
TravelRequirements String False The TravelRequirements of the JobOrder4.
UsersAssigned String False The UsersAssigned of the JobOrder4.
VisaSponsorshipProvided Bool False The VisaSponsorshipProvided of the JobOrder4.
Willrelocate Int False The Willrelocate of the JobOrder4.
WillRelocateBoolean Bool False The WillRelocateBoolean of the JobOrder4.
WorkersCompCodeId Int False The WorkersCompCodeId of the JobOrder4.
IsDeleted Bool False The IsDeleted of the JobOrder4.

JobOrder5

Create, update, delete and query data of 'JobOrder5' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrder5.
Ofopenings Int False The Ofopenings of the JobOrder5.
AdditionalskillsKeywords String False The AdditionalskillsKeywords of the JobOrder5.
AddressAddress String False The AddressAddress of the JobOrder5.
AddressCity String False The AddressCity of the JobOrder5.
AddressCountry Int False The AddressCountry of the JobOrder5.
AddressStateorProvince String False The AddressStateorProvince of the JobOrder5.
AddresszipPostalcode String False The AddresszipPostalcode of the JobOrder5.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the JobOrder5.
Benefits String False The Benefits of the JobOrder5.
BillRateCategory Int False The BillRateCategory of the JobOrder5.
BonusPackage String False The BonusPackage of the JobOrder5.
Branch String False The Branch of the JobOrder5.
BranchID Int False The BranchID of the JobOrder5.
CertificationRequirements String False The CertificationRequirements of the JobOrder5.
ClientBillRate String False The ClientBillRate of the JobOrder5.
ClientCompanyId Int False The ClientCompanyId of the JobOrder5.
ClientCostCenter String False The ClientCostCenter of the JobOrder5.
ContactId Int False The ContactId of the JobOrder5.
DateAdded Datetime False The DateAdded of the JobOrder5.
DateClosed Datetime False The DateClosed of the JobOrder5.
DateLastExported Datetime False The DateLastExported of the JobOrder5.
DateLastPublished Datetime False The DateLastPublished of the JobOrder5.
DegreeRequirements String False The DegreeRequirements of the JobOrder5.
EducationRequirements String False The EducationRequirements of the JobOrder5.
Employment String False The Employment of the JobOrder5.
ExternalID String False The ExternalID of the JobOrder5.
HourlyCommitment Double False The HourlyCommitment of the JobOrder5.
HoursofOperation String False The HoursofOperation of the JobOrder5.
Interviewrequired Bool False The Interviewrequired of the JobOrder5.
JobBoardList String False The JobBoardList of the JobOrder5.
JobBoardPublishing Int False The JobBoardPublishing of the JobOrder5.
JobDescription String False The JobDescription of the JobOrder5.
JobDuration Double False The JobDuration of the JobOrder5.
JobTitle String False The JobTitle of the JobOrder5.
LastUpdated Datetime False The LastUpdated of the JobOrder5.
LocationId Int False The LocationId of the JobOrder5.
LocationRequirements String False The LocationRequirements of the JobOrder5.
MarkUp Double False The MarkUp of the JobOrder5.
MinimumExperience Int False The MinimumExperience of the JobOrder5.
NumberofEmployees Bool False The NumberofEmployees of the JobOrder5.
OpenClosed Bool False The OpenClosed of the JobOrder5.
OptionsPackage String False The OptionsPackage of the JobOrder5.
OwnerId Int False The OwnerId of the JobOrder5.
PayRate String False The PayRate of the JobOrder5.
PayRate2 String False The PayRate2 of the JobOrder5.
Permfee Double False The Permfee of the JobOrder5.
Priority Int False The Priority of the JobOrder5.
PublicCategory Int False The PublicCategory of the JobOrder5.
PublishedCategoryId Int False The PublishedCategoryId of the JobOrder5.
PublishedContactInfoId Int False The PublishedContactInfoId of the JobOrder5.
PublishedDescription String False The PublishedDescription of the JobOrder5.
PublishedZipCode String False The PublishedZipCode of the JobOrder5.
ReasonClosed String False The ReasonClosed of the JobOrder5.
ReportingtoContactId Int False The ReportingtoContactId of the JobOrder5.
ReportingtoOther String False The ReportingtoOther of the JobOrder5.
Salary String False The Salary of the JobOrder5.
ScheduledEnd Datetime False The ScheduledEnd of the JobOrder5.
ShiftId Int False The ShiftId of the JobOrder5.
Source String False The Source of the JobOrder5.
StartDate Datetime False The StartDate of the JobOrder5.
Status String False The Status of the JobOrder5.
Tax Double False The Tax of the JobOrder5.
TaxPreference String False The TaxPreference of the JobOrder5.
TravelRequirements String False The TravelRequirements of the JobOrder5.
UsersAssigned String False The UsersAssigned of the JobOrder5.
VisaSponsorshipProvided Bool False The VisaSponsorshipProvided of the JobOrder5.
Willrelocate Int False The Willrelocate of the JobOrder5.
WillRelocateBoolean Bool False The WillRelocateBoolean of the JobOrder5.
WorkersCompCodeId Int False The WorkersCompCodeId of the JobOrder5.
IsDeleted Bool False The IsDeleted of the JobOrder5.

JobOrderEditHistory

Create, update, delete and query data of 'JobOrderEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrderEditHistory.
AuditTrail String False The AuditTrail of the JobOrderEditHistory.
DateAdded Datetime False The DateAdded of the JobOrderEditHistory.
MigrateGUID String False The MigrateGUID of the JobOrderEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the JobOrderEditHistory.
TargetEntityId Int False The TargetEntityId of the JobOrderEditHistory.
TransactionID String False The TransactionID of the JobOrderEditHistory.

JobOrderEditHistoryFieldChange

Create, update, delete and query data of 'JobOrderEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrderEditHistoryFieldChange.
ColumnName String False The ColumnName of the JobOrderEditHistoryFieldChange.
Display String False The Display of the JobOrderEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the JobOrderEditHistoryFieldChange.
NewValue String False The NewValue of the JobOrderEditHistoryFieldChange.
OldValue String False The OldValue of the JobOrderEditHistoryFieldChange.

JobOrderFileAttachment

Create, update, delete and query data of 'JobOrderFileAttachment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrderFileAttachment.
ContentSubType String False The ContentSubType of the JobOrderFileAttachment.
ContentType String False The ContentType of the JobOrderFileAttachment.
DateAdded Datetime False The DateAdded of the JobOrderFileAttachment.
Description String False The Description of the JobOrderFileAttachment.
Directory String False The Directory of the JobOrderFileAttachment.
Distribution String False The Distribution of the JobOrderFileAttachment.
ExternalID String False The ExternalID of the JobOrderFileAttachment.
FileExtension String False The FileExtension of the JobOrderFileAttachment.
FileOwnerId Int False The FileOwnerId of the JobOrderFileAttachment.
FileSize Int False The FileSize of the JobOrderFileAttachment.
FileType String False The FileType of the JobOrderFileAttachment.
IsCopied Bool False The IsCopied of the JobOrderFileAttachment.
IsEncrypted Bool False The IsEncrypted of the JobOrderFileAttachment.
IsExternal Bool False The IsExternal of the JobOrderFileAttachment.
IsOpen Bool False The IsOpen of the JobOrderFileAttachment.
IsPrivate Bool False The IsPrivate of the JobOrderFileAttachment.
IsSendOut Bool False The IsSendOut of the JobOrderFileAttachment.
JobOrderId Int False The JobOrderId of the JobOrderFileAttachment.
Name String False The Name of the JobOrderFileAttachment.
Type String False The Type of the JobOrderFileAttachment.
UserId Int False The UserId of the JobOrderFileAttachment.
Uuid String False The Uuid of the JobOrderFileAttachment.
IsDeleted Bool False The IsDeleted of the JobOrderFileAttachment.

JobOrderHistory

Create, update, delete and query data of 'JobOrderHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrderHistory.
ClientBillRate String False The ClientBillRate of the JobOrderHistory.
ClientContactId Int False The ClientContactId of the JobOrderHistory.
ClientCorporationId Int False The ClientCorporationId of the JobOrderHistory.
DateAdded Datetime False The DateAdded of the JobOrderHistory.
DateEnd Datetime False The DateEnd of the JobOrderHistory.
FeeArrangement Double False The FeeArrangement of the JobOrderHistory.
IsOpen Bool False The IsOpen of the JobOrderHistory.
IsPublic Int False The IsPublic of the JobOrderHistory.
JobBoardPublishing String False The JobBoardPublishing of the JobOrderHistory.
JobOrderId Int False The JobOrderId of the JobOrderHistory.
MigrateGUID String False The MigrateGUID of the JobOrderHistory.
ModifyingUserId Int False The ModifyingUserId of the JobOrderHistory.
NumOpenings Int False The NumOpenings of the JobOrderHistory.
PayRate String False The PayRate of the JobOrderHistory.
ReportToClientContactId Int False The ReportToClientContactId of the JobOrderHistory.
Salary String False The Salary of the JobOrderHistory.
StartDate Datetime False The StartDate of the JobOrderHistory.
Status String False The Status of the JobOrderHistory.
TaxRate Double False The TaxRate of the JobOrderHistory.
Type Int False The Type of the JobOrderHistory.

JobOrderTemplate

Create, update, delete and query data of 'JobOrderTemplate' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobOrderTemplate.
CorporationID Int False The CorporationID of the JobOrderTemplate.
DateAdded Datetime False The DateAdded of the JobOrderTemplate.
Description String False The Description of the JobOrderTemplate.
DisplayType String False The DisplayType of the JobOrderTemplate.
Enabled Bool False The Enabled of the JobOrderTemplate.
EntityList String False The EntityList of the JobOrderTemplate.
GroupName String False The GroupName of the JobOrderTemplate.
IsSearchable Bool False The IsSearchable of the JobOrderTemplate.
MigrateStatus String False The MigrateStatus of the JobOrderTemplate.
Name String False The Name of the JobOrderTemplate.
ObjectEnabled Bool False The ObjectEnabled of the JobOrderTemplate.
ObjectNumber Int False The ObjectNumber of the JobOrderTemplate.
ReportID Int False The ReportID of the JobOrderTemplate.
StaticTemplateName String False The StaticTemplateName of the JobOrderTemplate.
TabName String False The TabName of the JobOrderTemplate.
Type String False The Type of the JobOrderTemplate.

JobSubmission

Create, update, delete and query data of 'JobSubmission' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmission.
AddedById Int False The AddedById of the JobSubmission.
BillRate String False The BillRate of the JobSubmission.
BranchID Int False The BranchID of the JobSubmission.
CandidateId Int False The CandidateId of the JobSubmission.
Comments String False The Comments of the JobSubmission.
DateAdded Datetime False The DateAdded of the JobSubmission.
DateLastModified Datetime False The DateLastModified of the JobSubmission.
DateWebResponse Datetime False The DateWebResponse of the JobSubmission.
IsHidden Bool False The IsHidden of the JobSubmission.
JobId Int False The JobId of the JobSubmission.
LatestAppointmentId Int False The LatestAppointmentId of the JobSubmission.
MigrateGUID String False The MigrateGUID of the JobSubmission.
PayRate String False The PayRate of the JobSubmission.
Salary String False The Salary of the JobSubmission.
Source String False The Source of the JobSubmission.
Status String False The Status of the JobSubmission.
IsDeleted Bool False The IsDeleted of the JobSubmission.

JobSubmissionCertificationRequirement

Create, update, delete and query data of 'JobSubmissionCertificationRequirement' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmissionCertificationRequirement.
CandidateCredentialId Int False The CandidateCredentialId of the JobSubmissionCertificationRequirement.
CandidateCredentialName String False The CandidateCredentialName of the JobSubmissionCertificationRequirement.
CandidateCredentialStatus String False The CandidateCredentialStatus of the JobSubmissionCertificationRequirement.
CertificationId Int False The CertificationId of the JobSubmissionCertificationRequirement.
DateAdded Datetime False The DateAdded of the JobSubmissionCertificationRequirement.
ExpirationDate Datetime False The ExpirationDate of the JobSubmissionCertificationRequirement.
JobSubmissionId Int False The JobSubmissionId of the JobSubmissionCertificationRequirement.
MatchingCredentialCount Int False The MatchingCredentialCount of the JobSubmissionCertificationRequirement.
ModifyingUserId Int False The ModifyingUserId of the JobSubmissionCertificationRequirement.
OwnerId Int False The OwnerId of the JobSubmissionCertificationRequirement.

JobSubmissionCertificationRequirementEditHistory

Create, update, delete and query data of 'JobSubmissionCertificationRequirementEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmissionCertificationRequirementEditHistory.
AuditTrail String False The AuditTrail of the JobSubmissionCertificationRequirementEditHistory.
DateAdded Datetime False The DateAdded of the JobSubmissionCertificationRequirementEditHistory.
MigrateGUID String False The MigrateGUID of the JobSubmissionCertificationRequirementEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the JobSubmissionCertificationRequirementEditHistory.
TargetEntityId Int False The TargetEntityId of the JobSubmissionCertificationRequirementEditHistory.
TransactionID String False The TransactionID of the JobSubmissionCertificationRequirementEditHistory.

JobSubmissionCertificationRequirementEditHistoryFieldChange

Create, update, delete and query data of 'JobSubmissionCertificationRequirementEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmissionCertificationRequirementEditHistoryFieldChange.
ColumnName String False The ColumnName of the JobSubmissionCertificationRequirementEditHistoryFieldChange.
Display String False The Display of the JobSubmissionCertificationRequirementEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the JobSubmissionCertificationRequirementEditHistoryFieldChange.
NewValue String False The NewValue of the JobSubmissionCertificationRequirementEditHistoryFieldChange.
OldValue String False The OldValue of the JobSubmissionCertificationRequirementEditHistoryFieldChange.

JobSubmissionEditHistory

Create, update, delete and query data of 'JobSubmissionEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmissionEditHistory.
AuditTrail String False The AuditTrail of the JobSubmissionEditHistory.
DateAdded Datetime False The DateAdded of the JobSubmissionEditHistory.
MigrateGUID String False The MigrateGUID of the JobSubmissionEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the JobSubmissionEditHistory.
TargetEntityId Int False The TargetEntityId of the JobSubmissionEditHistory.
TransactionID String False The TransactionID of the JobSubmissionEditHistory.

JobSubmissionEditHistoryFieldChange

Create, update, delete and query data of 'JobSubmissionEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmissionEditHistoryFieldChange.
ColumnName String False The ColumnName of the JobSubmissionEditHistoryFieldChange.
Display String False The Display of the JobSubmissionEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the JobSubmissionEditHistoryFieldChange.
NewValue String False The NewValue of the JobSubmissionEditHistoryFieldChange.
OldValue String False The OldValue of the JobSubmissionEditHistoryFieldChange.

JobSubmissionHistory

Create, update, delete and query data of 'JobSubmissionHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the JobSubmissionHistory.
Comments String False The Comments of the JobSubmissionHistory.
DateAdded Datetime False The DateAdded of the JobSubmissionHistory.
JobSubmissionId Int False The JobSubmissionId of the JobSubmissionHistory.
MigrateGUID String False The MigrateGUID of the JobSubmissionHistory.
ModifyingUserId Int False The ModifyingUserId of the JobSubmissionHistory.
Status String False The Status of the JobSubmissionHistory.
TransactionID String False The TransactionID of the JobSubmissionHistory.

Location

Create, update, delete and query data of 'Location' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Location.
AddressAddress1 String False The AddressAddress1 of the Location.
AddressAddress2 String False The AddressAddress2 of the Location.
AddressCity String False The AddressCity of the Location.
AddressCountry Int False The AddressCountry of the Location.
AddresscountryCode String False The AddresscountryCode of the Location.
AddresscountryName String False The AddresscountryName of the Location.
AddressState String False The AddressState of the Location.
AddressZip String False The AddressZip of the Location.
BillTo Bool False The BillTo of the Location.
CandidateUserID Int False The CandidateUserID of the Location.
ClientCorporationID Int False The ClientCorporationID of the Location.
DateAdded Datetime False The DateAdded of the Location.
DateLastModified Datetime False The DateLastModified of the Location.
Description String False The Description of the Location.
EffectiveDate Date False The EffectiveDate of the Location.
EffectiveEndDate Date False The EffectiveEndDate of the Location.
LocationCode String False The LocationCode of the Location.
LocationVersionID Int False The LocationVersionID of the Location.
SoldTo Bool False The SoldTo of the Location.
Status String False The Status of the Location.
Title String False The Title of the Location.
UserID Int False The UserID of the Location.
Worksite Bool False The Worksite of the Location.
IsDeleted Bool False The IsDeleted of the Location.

LocationEditHistory

Create, update, delete and query data of 'LocationEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the LocationEditHistory.
AuditTrail String False The AuditTrail of the LocationEditHistory.
DateAdded Datetime False The DateAdded of the LocationEditHistory.
EffectiveDateChangeId Int False The EffectiveDateChangeId of the LocationEditHistory.
MigrateGUID String False The MigrateGUID of the LocationEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the LocationEditHistory.
TargetEntityId Int False The TargetEntityId of the LocationEditHistory.
TransactionID String False The TransactionID of the LocationEditHistory.
VersionID Int False The VersionID of the LocationEditHistory.

LocationEditHistoryFieldChange

Create, update, delete and query data of 'LocationEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the LocationEditHistoryFieldChange.
ColumnName String False The ColumnName of the LocationEditHistoryFieldChange.
Display String False The Display of the LocationEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the LocationEditHistoryFieldChange.
EntityFieldTypeLookupId Int False The EntityFieldTypeLookupId of the LocationEditHistoryFieldChange.
NewValue String False The NewValue of the LocationEditHistoryFieldChange.
OldValue String False The OldValue of the LocationEditHistoryFieldChange.

LocationEffectiveDateChange

Create, update, delete and query data of 'LocationEffectiveDateChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the LocationEffectiveDateChange.
EditHistoryId Int False The EditHistoryId of the LocationEffectiveDateChange.
NewEffectiveDate Date False The NewEffectiveDate of the LocationEffectiveDateChange.
PreviousEffectiveDate Date False The PreviousEffectiveDate of the LocationEffectiveDateChange.

LocationVersion

Create, update, delete and query data of 'LocationVersion' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the LocationVersion.
AddressAddress1 String False The AddressAddress1 of the LocationVersion.
AddressAddress2 String False The AddressAddress2 of the LocationVersion.
AddressCity String False The AddressCity of the LocationVersion.
AddressCountry Int False The AddressCountry of the LocationVersion.
AddresscountryCode String False The AddresscountryCode of the LocationVersion.
AddresscountryName String False The AddresscountryName of the LocationVersion.
AddressState String False The AddressState of the LocationVersion.
AddressZip String False The AddressZip of the LocationVersion.
BillTo Bool False The BillTo of the LocationVersion.
DateAdded Datetime False The DateAdded of the LocationVersion.
DateLastModified Datetime False The DateLastModified of the LocationVersion.
Description String False The Description of the LocationVersion.
EffectiveDate Date False The EffectiveDate of the LocationVersion.
EffectiveEndDate Date False The EffectiveEndDate of the LocationVersion.
IsFirst Bool False The IsFirst of the LocationVersion.
LocationCode String False The LocationCode of the LocationVersion.
SoldTo Bool False The SoldTo of the LocationVersion.
Status String False The Status of the LocationVersion.
Title String False The Title of the LocationVersion.
Worksite Bool False The Worksite of the LocationVersion.

Note

Create, update, delete and query data of 'Note' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Note.
AboutId Int False The AboutId of the Note.
Action String False The Action of the Note.
AuthorId Int False The AuthorId of the Note.
BhTimeStamp String False The BhTimeStamp of the Note.
Comments String False The Comments of the Note.
DateAdded Datetime False The DateAdded of the Note.
DateLastModified Datetime False The DateLastModified of the Note.
ExternalID String False The ExternalID of the Note.
JobOrderId Int False The JobOrderId of the Note.
MigrateGUID String False The MigrateGUID of the Note.
PrimaryDepartmentName String False The PrimaryDepartmentName of the Note.
TimespentMin Int False The TimespentMin of the Note.
TruestDateAdded Datetime False The TruestDateAdded of the Note.
IsDeleted Bool False The IsDeleted of the Note.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

NoteEntity

Create, update, delete and query data of 'NoteEntity' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the NoteEntity.
NoteId Int False The NoteId of the NoteEntity.
TargetEntityID Int False The TargetEntityID of the NoteEntity.
TargetEntityName String False The TargetEntityName of the NoteEntity.

Opportunity

Create, update, delete and query data of 'Opportunity' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Opportunity.
Ofopenings Int False The Ofopenings of the Opportunity.
ActualCloseDate Datetime False The actual close date of the Opportunity.
AddressAddress String False The AddressAddress of the Opportunity.
AddressCity String False The AddressCity of the Opportunity.
AddressCountry Int False The AddressCountry of the Opportunity.
AddressStateorProvince String False The AddressStateorProvince of the Opportunity.
AddressZip String False The AddressZip of the Opportunity.
AllowClienttoEditJob Bool False The AllowClienttoEditJob of the Opportunity.
Benefits String False The Benefits of the Opportunity.
BillRateCategory Int False The BillRateCategory of the Opportunity.
BonusPackage String False The BonusPackage of the Opportunity.
BranchCode String False The Branch of the Opportunity.
BusinessSectorId Int False The Business Sector ID of the Opportunity.
ClientCompanyId Int False The ClientCompanyId of the Opportunity.
ContactId Int False The ContactId of the Opportunity.
DateAdded Datetime False The DateAdded of the Opportunity.
DegreeRequirements String False The DegreeRequirements of the Opportunity.
EducationRequirements String False The EducationRequirements of the Opportunity.
ExternalID String False The ExternalID of the Opportunity.
ExpectedFee Double False The ExpectedFee of the Opportunity.
ExpectedPayRate Double False The ExpectedPayRate of the Opportunity.
LastUpdated Datetime False The LastUpdated of the Opportunity.
LocationRequirements String False The LocationRequirements of the Opportunity.
MarkUp Double False The MarkUp of the Opportunity.
MinimumExperience Int False The MinimumExperience of the Opportunity.
OpenClosed Bool False The OpenClosed of the Opportunity.
OptionsPackage String False The OptionsPackage of the Opportunity.
OwnerId Int False The OwnerId of the Opportunity.
PayRate String False The PayRate of the Opportunity.
Priority Int False The Priority of the Opportunity.
PublicCategory Int False The PublicCategory of the Opportunity.
PublishedDescription String False The PublishedDescription of the Opportunity.
PublishedZipCode String False The PublishedZipCode of the Opportunity.
ReasonClosed String False The ReasonClosed of the Opportunity.
Salary String False The Salary of the Opportunity.
ShiftId Int False The ShiftId of the Opportunity.
Source String False The Source of the Opportunity.
Tax Double False The Tax of the Opportunity.
TaxPreference String False The TaxPreference of the Opportunity.
WillRelocate Bool False The WillRelocate of the Opportunity.
IsDeleted Bool False The IsDeleted of the Opportunity.

OpportunityEditHistory

Create, update, delete and query data of 'OpportunityEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the OpportunityEditHistory.
AuditTrail String False The AuditTrail of the OpportunityEditHistory.
DateAdded Datetime False The DateAdded of the OpportunityEditHistory.
MigrateGUID String False The MigrateGUID of the OpportunityEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the OpportunityEditHistory.
TransactionID String False The TransactionID of the OpportunityEditHistory.

OpportunityEditHistoryFieldChange

Create, update, delete and query data of 'OpportunityEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the OpportunityEditHistoryFieldChange.
ColumnName String False The ColumnName of the OpportunityEditHistoryFieldChange.
Display String False The Display of the OpportunityEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the OpportunityEditHistoryFieldChange.
NewValue String False The NewValue of the OpportunityEditHistoryFieldChange.
OldValue String False The OldValue of the OpportunityEditHistoryFieldChange.

OpportunityFileAttachment

Create, update, delete and query data of 'OpportunityFileAttachment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the OpportunityFileAttachment.
ContentSubType String False The ContentSubType of the OpportunityFileAttachment.
ContentType String False The ContentType of the OpportunityFileAttachment.
DateAdded Datetime False The DateAdded of the OpportunityFileAttachment.
Description String False The Description of the OpportunityFileAttachment.
Directory String False The Directory of the OpportunityFileAttachment.
Distribution String False The Distribution of the OpportunityFileAttachment.
ExternalID String False The ExternalID of the OpportunityFileAttachment.
FileExtension String False The FileExtension of the OpportunityFileAttachment.
FileOwnerId Int False The FileOwnerId of the OpportunityFileAttachment.
FileSize Int False The FileSize of the OpportunityFileAttachment.
FileType String False The FileType of the OpportunityFileAttachment.
IsCopied Bool False The IsCopied of the OpportunityFileAttachment.
IsEncrypted Bool False The IsEncrypted of the OpportunityFileAttachment.
IsExternal Bool False The IsExternal of the OpportunityFileAttachment.
IsOpen Bool False The IsOpen of the OpportunityFileAttachment.
IsPrivate Bool False The IsPrivate of the OpportunityFileAttachment.
IsSendOut Bool False The IsSendOut of the OpportunityFileAttachment.
Name String False The Name of the OpportunityFileAttachment.
Type String False The Type of the OpportunityFileAttachment.
Uuid String False The Uuid of the OpportunityFileAttachment.
IsDeleted Bool False The IsDeleted of the OpportunityFileAttachment.

PayableChargeEditHistory

Create, update, delete and query data of 'PayableChargeEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PayableChargeEditHistory.
AuditTrail String False The AuditTrail of the PayableChargeEditHistory.
DateAdded Datetime False The DateAdded of the PayableChargeEditHistory.
MigrateGUID String False The MigrateGUID of the PayableChargeEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the PayableChargeEditHistory.
TransactionID String False The TransactionID of the PayableChargeEditHistory.

PayableChargeEditHistoryFieldChange

Create, update, delete and query data of 'PayableChargeEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PayableChargeEditHistoryFieldChange.
ColumnName String False The ColumnName of the PayableChargeEditHistoryFieldChange.
Display String False The Display of the PayableChargeEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the PayableChargeEditHistoryFieldChange.
NewValue String False The NewValue of the PayableChargeEditHistoryFieldChange.
OldValue String False The OldValue of the PayableChargeEditHistoryFieldChange.

Person

Create, update, delete and query data of 'Person' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Person.
Addressaddress1 String False The Addressaddress1 of the Person.
Addressaddress2 String False The Addressaddress2 of the Person.
Addresscity String False The Addresscity of the Person.
AddresscountryCode String False The AddresscountryCode of the Person.
AddresscountryID Int False The AddresscountryID of the Person.
AddresscountryName String False The AddresscountryName of the Person.
Addressstate String False The Addressstate of the Person.
Addresszip String False The Addresszip of the Person.
BranchId Int False The BranchId of the Person.
CompanyName String False The CompanyName of the Person.
DateLastContacted Datetime False The DateLastContacted of the Person.
Email String False The Email of the Person.
Email2 String False The Email2 of the Person.
Email3 String False The Email3 of the Person.
Fax String False The Fax of the Person.
Fax2 String False The Fax2 of the Person.
Fax3 String False The Fax3 of the Person.
FirstName String False The FirstName of the Person.
IsAnonymized Bool False The IsAnonymized of the Person.
IsDayLightSavings Bool False The IsDayLightSavings of the Person.
IsLockedOut Bool False The IsLockedOut of the Person.
LastName String False The LastName of the Person.
MassMailOptOut Bool False The MassMailOptOut of the Person.
MasterUserID Int False The MasterUserID of the Person.
MiddleName String False The MiddleName of the Person.
Mobile String False The Mobile of the Person.
Name String False The Name of the Person.
NamePrefix String False The NamePrefix of the Person.
NameSuffix String False The NameSuffix of the Person.
NickName String False The NickName of the Person.
Occupation String False The Occupation of the Person.
Pager String False The Pager of the Person.
Phone String False The Phone of the Person.
Phone2 String False The Phone2 of the Person.
Phone3 String False The Phone3 of the Person.
Status String False The Status of the Person.
TimeZoneOffsetEST Int False The TimeZoneOffsetEST of the Person.
Type String False The Type of the Person.
UserDateAdded Datetime False The UserDateAdded of the Person.
Username String False The Username of the Person.
UserTypeId Int False The UserTypeId of the Person.
IsDeleted Bool False The IsDeleted of the Person.

Placement

Create, update, delete and query data of 'Placement' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Placement.
Changesapproved Int False The Changesapproved of the Placement.
Changeswaitingapproval Int False The Changeswaitingapproval of the Placement.
Expiringcredentials Int False The Expiringcredentials of the Placement.
Incompleterequirements Int False The Incompleterequirements of the Placement.
ApprovingClientContactId Int False The ApprovingClientContactId of the Placement.
BackupApprovingClientContactId Int False The BackupApprovingClientContactId of the Placement.
BillingContactId Int False The BillingContactId of the Placement.
BillingFrequency String False The BillingFrequency of the Placement.
BillRate Double False The BillRate of the Placement.
BonusPackage String False The BonusPackage of the Placement.
BranchID Int False The BranchID of the Placement.
CandidateId Int False The CandidateId of the Placement.
CanEnterTime Bool False The CanEnterTime of the Placement.
ClientContactId Int False The ClientContactId of the Placement.
Comments String False The Comments of the Placement.
CompanyId Int False The CompanyId of the Placement.
CostCenter String False The CostCenter of the Placement.
DateAdded Datetime False The DateAdded of the Placement.
DateLastModified Datetime False The DateLastModified of the Placement.
DaysGuaranteed Int False The DaysGuaranteed of the Placement.
DaysproRated Int False The DaysproRated of the Placement.
EffectiveDate Datetime False The EffectiveDate of the Placement.
EffectivedateClient Datetime False The EffectivedateClient of the Placement.
EmployeeType String False The EmployeeType of the Placement.
EmploymentType String False The EmploymentType of the Placement.
HoursofOperation String False The HoursofOperation of the Placement.
HoursPerDay Double False The HoursPerDay of the Placement.
HousingManager Int False The HousingManager of the Placement.
HousingStatus String False The HousingStatus of the Placement.
InvoiceGrouping String False The InvoiceGrouping of the Placement.
JobDuration Double False The JobDuration of the Placement.
JobId Int False The JobId of the Placement.
LastApprovedPlacementChangeRequestId Int False The LastApprovedPlacementChangeRequestId of the Placement.
LocationId Int False The LocationId of the Placement.
MarkUp Double False The MarkUp of the Placement.
MigrateGUID String False The MigrateGUID of the Placement.
OptionsPackage String False The OptionsPackage of the Placement.
OtherHourlyFee Double False The OtherHourlyFee of the Placement.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the Placement.
OtmarkUp Double False The OtmarkUp of the Placement.
OverTimebillrate Double False The OverTimebillrate of the Placement.
OverTimepayrate Double False The OverTimepayrate of the Placement.
OvertimeExemption Int False The OvertimeExemption of the Placement.
OwnerId Int False The OwnerId of the Placement.
PayRate String False The PayRate of the Placement.
PayUnit String False The PayUnit of the Placement.
Placementfee Double False The Placementfee of the Placement.
PlacementfeeFlat Double False The PlacementfeeFlat of the Placement.
ProjectCodeList String False The ProjectCodeList of the Placement.
QuitJob Bool False The QuitJob of the Placement.
RateEntryType Bool False The RateEntryType of the Placement.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the Placement.
ReferralFee String False The ReferralFee of the Placement.
ReferralFeeType String False The ReferralFeeType of the Placement.
ReportedMargin Double False The ReportedMargin of the Placement.
Reportingto String False The Reportingto of the Placement.
Salary String False The Salary of the Placement.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the Placement.
ScheduledEnd Datetime False The ScheduledEnd of the Placement.
ShiftId Int False The ShiftId of the Placement.
StartDate Datetime False The StartDate of the Placement.
StatementContactId Int False The StatementContactId of the Placement.
Status String False The Status of the Placement.
SubmissionId Int False The SubmissionId of the Placement.
Tax Double False The Tax of the Placement.
TaxState String False The TaxState of the Placement.
TerminationReason String False The TerminationReason of the Placement.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the Placement.
WorkersCompCodeId Int False The WorkersCompCodeId of the Placement.
WorkWeekBegin Int False The WorkWeekBegin of the Placement.

Placement1

Create, update, delete and query data of 'Placement1' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Placement1.
Changesapproved Int False The Changesapproved of the Placement1.
Changeswaitingapproval Int False The Changeswaitingapproval of the Placement1.
Expiringcredentials Int False The Expiringcredentials of the Placement1.
Incompleterequirements Int False The Incompleterequirements of the Placement1.
ApprovingClientContactId Int False The ApprovingClientContactId of the Placement1.
BackupApprovingClientContactId Int False The BackupApprovingClientContactId of the Placement1.
BillingContactId Int False The BillingContactId of the Placement1.
BillingFrequency String False The BillingFrequency of the Placement1.
BillRate Double False The BillRate of the Placement1.
BonusPackage String False The BonusPackage of the Placement1.
BranchID Int False The BranchID of the Placement1.
CandidateId Int False The CandidateId of the Placement1.
CanEnterTime Bool False The CanEnterTime of the Placement1.
ClientCompanyId Int False The ClientCompanyId of the Placement1.
Comments String False The Comments of the Placement1.
ContactId Int False The ContactId of the Placement1.
CostCenter String False The CostCenter of the Placement1.
DateAdded Datetime False The DateAdded of the Placement1.
DateLastModified Datetime False The DateLastModified of the Placement1.
DaysGuaranteed Int False The DaysGuaranteed of the Placement1.
DaysproRated Int False The DaysproRated of the Placement1.
EffectiveDate Datetime False The EffectiveDate of the Placement1.
EffectivedateClient Datetime False The EffectivedateClient of the Placement1.
EmployeeType String False The EmployeeType of the Placement1.
EmploymentType String False The EmploymentType of the Placement1.
HoursofOperation String False The HoursofOperation of the Placement1.
HoursPerDay Double False The HoursPerDay of the Placement1.
HousingManager Int False The HousingManager of the Placement1.
HousingStatus String False The HousingStatus of the Placement1.
InvoiceGrouping String False The InvoiceGrouping of the Placement1.
JobId Int False The JobId of the Placement1.
JobDuration Double False The JobDuration of the Placement1.
LastApprovedPlacementChangeRequestId Int False The LastApprovedPlacementChangeRequestId of the Placement1.
LocationId Int False The LocationId of the Placement1.
MarkUp Double False The MarkUp of the Placement1.
MigrateGUID String False The MigrateGUID of the Placement1.
OptionsPackage String False The OptionsPackage of the Placement1.
OtherHourlyFee Double False The OtherHourlyFee of the Placement1.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the Placement1.
OtmarkUp Double False The OtmarkUp of the Placement1.
OverTimebillrate Double False The OverTimebillrate of the Placement1.
OverTimepayrate Double False The OverTimepayrate of the Placement1.
OvertimeExemption Int False The OvertimeExemption of the Placement1.
OwnerId Int False The OwnerId of the Placement1.
PayRate String False The PayRate of the Placement1.
PayUnit String False The PayUnit of the Placement1.
Placementfee Double False The Placementfee of the Placement1.
PlacementfeeFlat Double False The PlacementfeeFlat of the Placement1.
ProjectCodeList String False The ProjectCodeList of the Placement1.
QuitJob Bool False The QuitJob of the Placement1.
RateEntryType Bool False The RateEntryType of the Placement1.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the Placement1.
ReferralFee String False The ReferralFee of the Placement1.
ReferralFeeType String False The ReferralFeeType of the Placement1.
ReportedMargin Double False The ReportedMargin of the Placement1.
Reportingto String False The Reportingto of the Placement1.
Salary String False The Salary of the Placement1.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the Placement1.
ScheduledEnd Datetime False The ScheduledEnd of the Placement1.
ShiftId Int False The ShiftId of the Placement1.
StartDate Datetime False The StartDate of the Placement1.
StatementContactId Int False The StatementContactId of the Placement1.
Status String False The Status of the Placement1.
SubmissionId Int False The SubmissionId of the Placement1.
Tax Double False The Tax of the Placement1.
TaxState String False The TaxState of the Placement1.
TerminationReason String False The TerminationReason of the Placement1.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the Placement1.
WorkersCompCodeId Int False The WorkersCompCodeId of the Placement1.
WorkWeekBegin Int False The WorkWeekBegin of the Placement1.

Placement2

Create, update, delete and query data of 'Placement2' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Placement2.
Changesapproved Int False The Changesapproved of the Placement2.
Changeswaitingapproval Int False The Changeswaitingapproval of the Placement2.
Expiringcredentials Int False The Expiringcredentials of the Placement2.
Incompleterequirements Int False The Incompleterequirements of the Placement2.
ApprovingClientContactId Int False The ApprovingClientContactId of the Placement2.
BackupApprovingClientContactId Int False The BackupApprovingClientContactId of the Placement2.
BillingContactId Int False The BillingContactId of the Placement2.
BillingFrequency String False The BillingFrequency of the Placement2.
BillRate Double False The BillRate of the Placement2.
BonusPackage String False The BonusPackage of the Placement2.
BranchID Int False The BranchID of the Placement2.
CandidateId Int False The CandidateId of the Placement2.
CanEnterTime Bool False The CanEnterTime of the Placement2.
ClientCompanyId Int False The ClientCompanyId of the Placement2.
Comments String False The Comments of the Placement2.
ContactId Int False The ContactId of the Placement2.
CostCenter String False The CostCenter of the Placement2.
DateAdded Datetime False The DateAdded of the Placement2.
DateLastModified Datetime False The DateLastModified of the Placement2.
DaysGuaranteed Int False The DaysGuaranteed of the Placement2.
DaysproRated Int False The DaysproRated of the Placement2.
EffectiveDate Datetime False The EffectiveDate of the Placement2.
EffectivedateClient Datetime False The EffectivedateClient of the Placement2.
EmployeeType String False The EmployeeType of the Placement2.
Employment String False The Employment of the Placement2.
HoursofOperation String False The HoursofOperation of the Placement2.
HoursPerDay Double False The HoursPerDay of the Placement2.
HousingManager Int False The HousingManager of the Placement2.
HousingStatus String False The HousingStatus of the Placement2.
InvoiceGrouping String False The InvoiceGrouping of the Placement2.
JobId Int False The JobId of the Placement2.
JobDuration Double False The JobDuration of the Placement2.
LastApprovedPlacementChangeRequestId Int False The LastApprovedPlacementChangeRequestId of the Placement2.
LocationId Int False The LocationId of the Placement2.
MarkUp Double False The MarkUp of the Placement2.
MigrateGUID String False The MigrateGUID of the Placement2.
OptionsPackage String False The OptionsPackage of the Placement2.
OtherHourlyFee Double False The OtherHourlyFee of the Placement2.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the Placement2.
OtmarkUp Double False The OtmarkUp of the Placement2.
OverTimebillrate Double False The OverTimebillrate of the Placement2.
OverTimepayrate Double False The OverTimepayrate of the Placement2.
OvertimeExemption Int False The OvertimeExemption of the Placement2.
OwnerId Int False The OwnerId of the Placement2.
PayRate String False The PayRate of the Placement2.
PayUnit String False The PayUnit of the Placement2.
Placementfee Double False The Placementfee of the Placement2.
PlacementfeeFlat Double False The PlacementfeeFlat of the Placement2.
ProjectCodeList String False The ProjectCodeList of the Placement2.
QuitJob Bool False The QuitJob of the Placement2.
RateEntryType Bool False The RateEntryType of the Placement2.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the Placement2.
ReferralFee String False The ReferralFee of the Placement2.
ReferralFeeType String False The ReferralFeeType of the Placement2.
ReportedMargin Double False The ReportedMargin of the Placement2.
Reportingto String False The Reportingto of the Placement2.
Salary String False The Salary of the Placement2.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the Placement2.
ScheduledEnd Datetime False The ScheduledEnd of the Placement2.
ShiftId Int False The ShiftId of the Placement2.
StartDate Datetime False The StartDate of the Placement2.
StatementContactId Int False The StatementContactId of the Placement2.
Status String False The Status of the Placement2.
SubmissionId Int False The SubmissionId of the Placement2.
TaxRate Double False The TaxRate of the Placement2.
TaxState String False The TaxState of the Placement2.
TerminationReason String False The TerminationReason of the Placement2.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the Placement2.
WorkersCompCodeId Int False The WorkersCompCodeId of the Placement2.
WorkWeekBegin Int False The WorkWeekBegin of the Placement2.

Placement3

Create, update, delete and query data of 'Placement3' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Placement3.
Changesapproved Int False The Changesapproved of the Placement3.
Changeswaitingapproval Int False The Changeswaitingapproval of the Placement3.
Expiringcredentials Int False The Expiringcredentials of the Placement3.
Incompleterequirements Int False The Incompleterequirements of the Placement3.
ApprovingClientContactId Int False The ApprovingClientContactId of the Placement3.
BackupApprovingClientContactId Int False The BackupApprovingClientContactId of the Placement3.
BillingContactId Int False The BillingContactId of the Placement3.
BillingFrequency String False The BillingFrequency of the Placement3.
BillRate Double False The BillRate of the Placement3.
BonusPackage String False The BonusPackage of the Placement3.
BranchID Int False The BranchID of the Placement3.
CandidateId Int False The CandidateId of the Placement3.
CanEnterTime Bool False The CanEnterTime of the Placement3.
ClientCompanyId Int False The ClientCompanyId of the Placement3.
Comments String False The Comments of the Placement3.
ContactId Int False The ContactId of the Placement3.
CostCenter String False The CostCenter of the Placement3.
DateAdded Datetime False The DateAdded of the Placement3.
DateLastModified Datetime False The DateLastModified of the Placement3.
DaysGuaranteed Int False The DaysGuaranteed of the Placement3.
DaysproRated Int False The DaysproRated of the Placement3.
EffectiveDate Datetime False The EffectiveDate of the Placement3.
EffectivedateClient Datetime False The EffectivedateClient of the Placement3.
EmployeeType String False The EmployeeType of the Placement3.
Employment String False The Employment of the Placement3.
HoursofOperation String False The HoursofOperation of the Placement3.
HoursPerDay Double False The HoursPerDay of the Placement3.
HousingManager Int False The HousingManager of the Placement3.
HousingStatus String False The HousingStatus of the Placement3.
InvoiceGrouping String False The InvoiceGrouping of the Placement3.
JobId Int False The JobId of the Placement3.
JobDuration Double False The JobDuration of the Placement3.
LastApprovedPlacementChangeRequestId Int False The LastApprovedPlacementChangeRequestId of the Placement3.
LocationId Int False The LocationId of the Placement3.
MarkUp Double False The MarkUp of the Placement3.
MigrateGUID String False The MigrateGUID of the Placement3.
OptionsPackage String False The OptionsPackage of the Placement3.
OtherHourlyFee Double False The OtherHourlyFee of the Placement3.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the Placement3.
OtmarkUp Double False The OtmarkUp of the Placement3.
OverTimebillrate Double False The OverTimebillrate of the Placement3.
OverTimepayrate Double False The OverTimepayrate of the Placement3.
OvertimeExemption Int False The OvertimeExemption of the Placement3.
OwnerId Int False The OwnerId of the Placement3.
PayRate String False The PayRate of the Placement3.
PayUnit String False The PayUnit of the Placement3.
Placementfee Double False The Placementfee of the Placement3.
PlacementfeeFlat Double False The PlacementfeeFlat of the Placement3.
ProjectCodeList String False The ProjectCodeList of the Placement3.
QuitJob Bool False The QuitJob of the Placement3.
RateEntryType Bool False The RateEntryType of the Placement3.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the Placement3.
ReferralFee String False The ReferralFee of the Placement3.
ReferralFeeType String False The ReferralFeeType of the Placement3.
ReportedMargin Double False The ReportedMargin of the Placement3.
Reportingto String False The Reportingto of the Placement3.
Salary String False The Salary of the Placement3.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the Placement3.
ScheduledEnd Datetime False The ScheduledEnd of the Placement3.
ShiftId Int False The ShiftId of the Placement3.
StartDate Datetime False The StartDate of the Placement3.
StatementContactId Int False The StatementContactId of the Placement3.
Status String False The Status of the Placement3.
SubmissionId Int False The SubmissionId of the Placement3.
TaxRate Double False The TaxRate of the Placement3.
TaxState String False The TaxState of the Placement3.
TerminationReason String False The TerminationReason of the Placement3.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the Placement3.
WorkersCompCodeId Int False The WorkersCompCodeId of the Placement3.
WorkWeekBegin Int False The WorkWeekBegin of the Placement3.

Placement4

Create, update, delete and query data of 'Placement4' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Placement4.
Changesapproved Int False The Changesapproved of the Placement4.
Changeswaitingapproval Int False The Changeswaitingapproval of the Placement4.
Expiringcredentials Int False The Expiringcredentials of the Placement4.
Incompleterequirements Int False The Incompleterequirements of the Placement4.
ApprovingClientContactId Int False The ApprovingClientContactId of the Placement4.
BackupApprovingClientContactId Int False The BackupApprovingClientContactId of the Placement4.
BillingContactId Int False The BillingContactId of the Placement4.
BillingFrequency String False The BillingFrequency of the Placement4.
BillRate Double False The BillRate of the Placement4.
BonusPackage String False The BonusPackage of the Placement4.
BranchID Int False The BranchID of the Placement4.
CandidateId Int False The CandidateId of the Placement4.
CanEnterTime Bool False The CanEnterTime of the Placement4.
ClientCompanyId Int False The ClientCompanyId of the Placement4.
Comments String False The Comments of the Placement4.
ContactId Int False The ContactId of the Placement4.
CostCenter String False The CostCenter of the Placement4.
DateAdded Datetime False The DateAdded of the Placement4.
DateLastModified Datetime False The DateLastModified of the Placement4.
DaysGuaranteed Int False The DaysGuaranteed of the Placement4.
DaysproRated Int False The DaysproRated of the Placement4.
EffectiveDate Datetime False The EffectiveDate of the Placement4.
EffectivedateClient Datetime False The EffectivedateClient of the Placement4.
EmployeeType String False The EmployeeType of the Placement4.
Employment String False The Employment of the Placement4.
HoursofOperation String False The HoursofOperation of the Placement4.
HoursPerDay Double False The HoursPerDay of the Placement4.
HousingManager Int False The HousingManager of the Placement4.
HousingStatus String False The HousingStatus of the Placement4.
InvoiceGrouping String False The InvoiceGrouping of the Placement4.
JobId Int False The JobId of the Placement4.
JobDuration Double False The JobDuration of the Placement4.
LastApprovedPlacementChangeRequestId Int False The LastApprovedPlacementChangeRequestId of the Placement4.
LocationId Int False The LocationId of the Placement4.
MarkUp Double False The MarkUp of the Placement4.
MigrateGUID String False The MigrateGUID of the Placement4.
OptionsPackage String False The OptionsPackage of the Placement4.
OtherHourlyFee Double False The OtherHourlyFee of the Placement4.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the Placement4.
OtmarkUp Double False The OtmarkUp of the Placement4.
OverTimebillrate Double False The OverTimebillrate of the Placement4.
OverTimepayrate Double False The OverTimepayrate of the Placement4.
OvertimeExemption Int False The OvertimeExemption of the Placement4.
OwnerId Int False The OwnerId of the Placement4.
PayRate String False The PayRate of the Placement4.
PayUnit String False The PayUnit of the Placement4.
Placementfee Double False The Placementfee of the Placement4.
PlacementfeeFlat Double False The PlacementfeeFlat of the Placement4.
ProjectCodeList String False The ProjectCodeList of the Placement4.
QuitJob Bool False The QuitJob of the Placement4.
RateEntryType Bool False The RateEntryType of the Placement4.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the Placement4.
ReferralFee String False The ReferralFee of the Placement4.
ReferralFeeType String False The ReferralFeeType of the Placement4.
ReportedMargin Double False The ReportedMargin of the Placement4.
Reportingto String False The Reportingto of the Placement4.
Salary String False The Salary of the Placement4.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the Placement4.
ScheduledEnd Datetime False The ScheduledEnd of the Placement4.
ShiftId Int False The ShiftId of the Placement4.
StartDate Datetime False The StartDate of the Placement4.
StatementContactId Int False The StatementContactId of the Placement4.
Status String False The Status of the Placement4.
SubmissionId Int False The SubmissionId of the Placement4.
TaxRate Double False The TaxRate of the Placement4.
TaxState String False The TaxState of the Placement4.
TerminationReason String False The TerminationReason of the Placement4.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the Placement4.
WorkersCompCodeId Int False The WorkersCompCodeId of the Placement4.
WorkWeekBegin Int False The WorkWeekBegin of the Placement4.

Placement5

Create, update, delete and query data of 'Placement5' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Placement5.
Changesapproved Int False The Changesapproved of the Placement5.
Changeswaitingapproval Int False The Changeswaitingapproval of the Placement5.
Expiringcredentials Int False The Expiringcredentials of the Placement5.
Incompleterequirements Int False The Incompleterequirements of the Placement5.
ApprovingClientContactId Int False The ApprovingClientContactId of the Placement5.
BackupApprovingClientContactId Int False The BackupApprovingClientContactId of the Placement5.
BillingContactId Int False The BillingContactId of the Placement5.
BillingFrequency String False The BillingFrequency of the Placement5.
BillRate Double False The BillRate of the Placement5.
BonusPackage String False The BonusPackage of the Placement5.
BranchID Int False The BranchID of the Placement5.
CandidateId Int False The CandidateId of the Placement5.
CanEnterTime Bool False The CanEnterTime of the Placement5.
ClientCompanyId Int False The ClientCompanyId of the Placement5.
Comments String False The Comments of the Placement5.
ContactId Int False The ContactId of the Placement5.
CostCenter String False The CostCenter of the Placement5.
DateAdded Datetime False The DateAdded of the Placement5.
DateLastModified Datetime False The DateLastModified of the Placement5.
DaysGuaranteed Int False The DaysGuaranteed of the Placement5.
DaysproRated Int False The DaysproRated of the Placement5.
EffectiveDate Datetime False The EffectiveDate of the Placement5.
EffectivedateClient Datetime False The EffectivedateClient of the Placement5.
EmployeeType String False The EmployeeType of the Placement5.
Employment String False The Employment of the Placement5.
HoursofOperation String False The HoursofOperation of the Placement5.
HoursPerDay Double False The HoursPerDay of the Placement5.
HousingManager Int False The HousingManager of the Placement5.
HousingStatus String False The HousingStatus of the Placement5.
InvoiceGrouping String False The InvoiceGrouping of the Placement5.
JobId Int False The JobId of the Placement5.
JobDuration Double False The JobDuration of the Placement5.
LastApprovedPlacementChangeRequestId Int False The LastApprovedPlacementChangeRequestId of the Placement5.
LocationId Int False The LocationId of the Placement5.
MarkUp Double False The MarkUp of the Placement5.
MigrateGUID String False The MigrateGUID of the Placement5.
OptionsPackage String False The OptionsPackage of the Placement5.
OtherHourlyFee Double False The OtherHourlyFee of the Placement5.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the Placement5.
OtmarkUp Double False The OtmarkUp of the Placement5.
OverTimebillrate Double False The OverTimebillrate of the Placement5.
OverTimepayrate Double False The OverTimepayrate of the Placement5.
OvertimeExemption Int False The OvertimeExemption of the Placement5.
OwnerId Int False The OwnerId of the Placement5.
PayRate String False The PayRate of the Placement5.
PayUnit String False The PayUnit of the Placement5.
Placementfee Double False The Placementfee of the Placement5.
PlacementfeeFlat Double False The PlacementfeeFlat of the Placement5.
ProjectCodeList String False The ProjectCodeList of the Placement5.
QuitJob Bool False The QuitJob of the Placement5.
RateEntryType Bool False The RateEntryType of the Placement5.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the Placement5.
ReferralFee String False The ReferralFee of the Placement5.
ReferralFeeType String False The ReferralFeeType of the Placement5.
ReportedMargin Double False The ReportedMargin of the Placement5.
Reportingto String False The Reportingto of the Placement5.
Salary String False The Salary of the Placement5.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the Placement5.
ScheduledEnd Datetime False The ScheduledEnd of the Placement5.
ShiftId Int False The ShiftId of the Placement5.
StartDate Datetime False The StartDate of the Placement5.
StatementContactId Int False The StatementContactId of the Placement5.
Status String False The Status of the Placement5.
SubmissionId Int False The SubmissionId of the Placement5.
TaxRate Double False The TaxRate of the Placement5.
TaxState String False The TaxState of the Placement5.
TerminationReason String False The TerminationReason of the Placement5.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the Placement5.
WorkersCompCodeId Int False The WorkersCompCodeId of the Placement5.
WorkWeekBegin Int False The WorkWeekBegin of the Placement5.

PlacementCertification

Create, update, delete and query data of 'PlacementCertification' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementCertification.
CandidateCredentialId Int False The CandidateCredentialId of the PlacementCertification.
CandidateCredentialName String False The CandidateCredentialName of the PlacementCertification.
CandidateCredentialStatus String False The CandidateCredentialStatus of the PlacementCertification.
CertificationId Int False The CertificationId of the PlacementCertification.
DateAdded Datetime False The DateAdded of the PlacementCertification.
DateLastModified Datetime False The DateLastModified of the PlacementCertification.
ExpirationDate Datetime False The ExpirationDate of the PlacementCertification.
MatchingCredentialCount Int False The MatchingCredentialCount of the PlacementCertification.
ModifyingUserId Int False The ModifyingUserId of the PlacementCertification.
OwnerId Int False The OwnerId of the PlacementCertification.
PlacementId Int False The PlacementId of the PlacementCertification.

PlacementCertificationEditHistory

Create, update, delete and query data of 'PlacementCertificationEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementCertificationEditHistory.
AuditTrail String False The AuditTrail of the PlacementCertificationEditHistory.
DateAdded Datetime False The DateAdded of the PlacementCertificationEditHistory.
MigrateGUID String False The MigrateGUID of the PlacementCertificationEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the PlacementCertificationEditHistory.
TargetEntityId Int False The TargetEntityId of the PlacementCertificationEditHistory.
TransactionID String False The TransactionID of the PlacementCertificationEditHistory.

PlacementCertificationEditHistoryFieldChange

Create, update, delete and query data of 'PlacementCertificationEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementCertificationEditHistoryFieldChange.
ColumnName String False The ColumnName of the PlacementCertificationEditHistoryFieldChange.
Display String False The Display of the PlacementCertificationEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the PlacementCertificationEditHistoryFieldChange.
NewValue String False The NewValue of the PlacementCertificationEditHistoryFieldChange.
OldValue String False The OldValue of the PlacementCertificationEditHistoryFieldChange.

PlacementChangeRequest

Create, update, delete and query data of 'PlacementChangeRequest' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementChangeRequest.
ApprovingUserId Int False The ApprovingUserId of the PlacementChangeRequest.
BillingContactId Int False The BillingContactId of the PlacementChangeRequest.
BillingFrequency String False The BillingFrequency of the PlacementChangeRequest.
BillRate Double False The BillRate of the PlacementChangeRequest.
BonusPackage String False The BonusPackage of the PlacementChangeRequest.
Comments String False The Comments of the PlacementChangeRequest.
CostCenter String False The CostCenter of the PlacementChangeRequest.
DateAdded Datetime False The DateAdded of the PlacementChangeRequest.
DateApproved Datetime False The DateApproved of the PlacementChangeRequest.
DateLastModified Datetime False The DateLastModified of the PlacementChangeRequest.
DaysGuaranteed Int False The DaysGuaranteed of the PlacementChangeRequest.
DaysproRated Int False The DaysproRated of the PlacementChangeRequest.
EffectiveDate Datetime False The EffectiveDate of the PlacementChangeRequest.
EffectivedateClient Datetime False The EffectivedateClient of the PlacementChangeRequest.
EmployeeType String False The EmployeeType of the PlacementChangeRequest.
EmploymentType String False The EmploymentType of the PlacementChangeRequest.
HoursofOperation String False The HoursofOperation of the PlacementChangeRequest.
HoursPerDay Double False The HoursPerDay of the PlacementChangeRequest.
HousingManager Int False The HousingManager of the PlacementChangeRequest.
HousingStatus String False The HousingStatus of the PlacementChangeRequest.
JobDuration Double False The JobDuration of the PlacementChangeRequest.
LocationId Int False The LocationId of the PlacementChangeRequest.
MarkUp Double False The MarkUp of the PlacementChangeRequest.
MigrateGUID String False The MigrateGUID of the PlacementChangeRequest.
OptionsPackage String False The OptionsPackage of the PlacementChangeRequest.
OtherHourlyFee Double False The OtherHourlyFee of the PlacementChangeRequest.
OtherHourlyFeeComments String False The OtherHourlyFeeComments of the PlacementChangeRequest.
OverTimebillrate Double False The OverTimebillrate of the PlacementChangeRequest.
OverTimepayrate Double False The OverTimepayrate of the PlacementChangeRequest.
OvertimeExemption Int False The OvertimeExemption of the PlacementChangeRequest.
PayRate String False The PayRate of the PlacementChangeRequest.
PayUnit String False The PayUnit of the PlacementChangeRequest.
PlacementId Int False The PlacementId of the PlacementChangeRequest.
Placementfee Double False The Placementfee of the PlacementChangeRequest.
PlacementfeeFlat Double False The PlacementfeeFlat of the PlacementChangeRequest.
RateEntryType Bool False The RateEntryType of the PlacementChangeRequest.
RecruitingmanagercommissionoverRide Double False The RecruitingmanagercommissionoverRide of the PlacementChangeRequest.
ReferralFee String False The ReferralFee of the PlacementChangeRequest.
ReferralFeeType String False The ReferralFeeType of the PlacementChangeRequest.
Reportingto String False The Reportingto of the PlacementChangeRequest.
RequestedbyId Int False The RequestedbyId of the PlacementChangeRequest.
RequestStatus String False The RequestStatus of the PlacementChangeRequest.
RequestType String False The RequestType of the PlacementChangeRequest.
Salary String False The Salary of the PlacementChangeRequest.
SalesmanagercommissionoverRide Double False The SalesmanagercommissionoverRide of the PlacementChangeRequest.
ScheduledEnd Datetime False The ScheduledEnd of the PlacementChangeRequest.
StartDate Datetime False The StartDate of the PlacementChangeRequest.
StatementContactId Int False The StatementContactId of the PlacementChangeRequest.
Status String False The Status of the PlacementChangeRequest.
Tax Double False The Tax of the PlacementChangeRequest.
TaxState String False The TaxState of the PlacementChangeRequest.
TerminationReason String False The TerminationReason of the PlacementChangeRequest.
UmbrellaCompanyId Int False The UmbrellaCompanyId of the PlacementChangeRequest.
WorkersCompCodeId Int False The WorkersCompCodeId of the PlacementChangeRequest.
WorkWeekBegin Int False The WorkWeekBegin of the PlacementChangeRequest.

PlacementChangeRequestEditHistory

Create, update, delete and query data of 'PlacementChangeRequestEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementChangeRequestEditHistory.
AuditTrail String False The AuditTrail of the PlacementChangeRequestEditHistory.
DateAdded Datetime False The DateAdded of the PlacementChangeRequestEditHistory.
MigrateGUID String False The MigrateGUID of the PlacementChangeRequestEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the PlacementChangeRequestEditHistory.
TargetEntityId Int False The TargetEntityId of the PlacementChangeRequestEditHistory.
TransactionID String False The TransactionID of the PlacementChangeRequestEditHistory.

PlacementChangeRequestEditHistoryFieldChange

Create, update, delete and query data of 'PlacementChangeRequestEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementChangeRequestEditHistoryFieldChange.
ColumnName String False The ColumnName of the PlacementChangeRequestEditHistoryFieldChange.
Display String False The Display of the PlacementChangeRequestEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the PlacementChangeRequestEditHistoryFieldChange.
NewValue String False The NewValue of the PlacementChangeRequestEditHistoryFieldChange.
OldValue String False The OldValue of the PlacementChangeRequestEditHistoryFieldChange.

PlacementCommission

Create, update, delete and query data of 'PlacementCommission' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementCommission.
Ofgrossmargin Double False The Ofgrossmargin of the PlacementCommission.
Comments String False The Comments of the PlacementCommission.
DateAdded Datetime False The DateAdded of the PlacementCommission.
DateLastModified Datetime False The DateLastModified of the PlacementCommission.
ExternalRecipient String False The ExternalRecipient of the PlacementCommission.
FeeSplit Double False The FeeSplit of the PlacementCommission.
HourlyCommission Double False The HourlyCommission of the PlacementCommission.
MigrateGUID String False The MigrateGUID of the PlacementCommission.
PlacementId Int False The PlacementId of the PlacementCommission.
RecipientId Int False The RecipientId of the PlacementCommission.
Role String False The Role of the PlacementCommission.
Split Double False The Split of the PlacementCommission.
Status String False The Status of the PlacementCommission.

PlacementCommissionEditHistory

Create, update, delete and query data of 'PlacementCommissionEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementCommissionEditHistory.
AuditTrail String False The AuditTrail of the PlacementCommissionEditHistory.
DateAdded Datetime False The DateAdded of the PlacementCommissionEditHistory.
MigrateGUID String False The MigrateGUID of the PlacementCommissionEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the PlacementCommissionEditHistory.
TargetEntityId Int False The TargetEntityId of the PlacementCommissionEditHistory.
TransactionID String False The TransactionID of the PlacementCommissionEditHistory.

PlacementCommissionEditHistoryFieldChange

Create, update, delete and query data of 'PlacementCommissionEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementCommissionEditHistoryFieldChange.
ColumnName String False The ColumnName of the PlacementCommissionEditHistoryFieldChange.
Display String False The Display of the PlacementCommissionEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the PlacementCommissionEditHistoryFieldChange.
NewValue String False The NewValue of the PlacementCommissionEditHistoryFieldChange.
OldValue String False The OldValue of the PlacementCommissionEditHistoryFieldChange.

PlacementEditHistory

Create, update, delete and query data of 'PlacementEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementEditHistory.
AuditTrail String False The AuditTrail of the PlacementEditHistory.
DateAdded Datetime False The DateAdded of the PlacementEditHistory.
MigrateGUID String False The MigrateGUID of the PlacementEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the PlacementEditHistory.
TargetEntityId Int False The TargetEntityId of the PlacementEditHistory.
TransactionID String False The TransactionID of the PlacementEditHistory.

PlacementEditHistoryFieldChange

Create, update, delete and query data of 'PlacementEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementEditHistoryFieldChange.
ColumnName String False The ColumnName of the PlacementEditHistoryFieldChange.
Display String False The Display of the PlacementEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the PlacementEditHistoryFieldChange.
NewValue String False The NewValue of the PlacementEditHistoryFieldChange.
OldValue String False The OldValue of the PlacementEditHistoryFieldChange.

PlacementFileAttachment

Create, update, delete and query data of 'PlacementFileAttachment' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the PlacementFileAttachment.
ContentSubType String False The ContentSubType of the PlacementFileAttachment.
ContentType String False The ContentType of the PlacementFileAttachment.
DateAdded Datetime False The DateAdded of the PlacementFileAttachment.
Description String False The Description of the PlacementFileAttachment.
Directory String False The Directory of the PlacementFileAttachment.
Distribution String False The Distribution of the PlacementFileAttachment.
ExternalID String False The ExternalID of the PlacementFileAttachment.
FileExtension String False The FileExtension of the PlacementFileAttachment.
FileOwnerId Int False The FileOwnerId of the PlacementFileAttachment.
FileSize Int False The FileSize of the PlacementFileAttachment.
FileType String False The FileType of the PlacementFileAttachment.
IsCopied Bool False The IsCopied of the PlacementFileAttachment.
IsEncrypted Bool False The IsEncrypted of the PlacementFileAttachment.
IsExternal Bool False The IsExternal of the PlacementFileAttachment.
IsOpen Bool False The IsOpen of the PlacementFileAttachment.
IsPrivate Bool False The IsPrivate of the PlacementFileAttachment.
IsSendOut Bool False The IsSendOut of the PlacementFileAttachment.
JobOrderId Int False The JobOrderId of the PlacementFileAttachment.
Name String False The Name of the PlacementFileAttachment.
PlacementId Int False The PlacementId of the PlacementFileAttachment.
Type String False The Type of the PlacementFileAttachment.
UserId Int False The UserId of the PlacementFileAttachment.
Uuid String False The Uuid of the PlacementFileAttachment.
IsDeleted Bool False The IsDeleted of the PlacementFileAttachment.

PlacementRateCard

Create, update, delete and query data of 'PlacementRateCard' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
id [KEY] Int False
DateAdded Datetime False
DateLastModified Datetime False
EffectiveDate Date False
EffectiveEndDate Date False
IsDeleted Bool False
OwnerId Int False
PlacementId Int False
PlacementRateCardVersion Int False
RootExternalID String False
RootMigrateGUID String False

PlacementRateCardLine

Create, update, delete and query data of 'PlacementRateCardLine' entity in BullhornCRM system.

Table Specific Information

This table comes with the limitations below since it is exposed from its parent entity PlacementRateCardLineGroup endpoint.

  • No more than a maximum of 15 PlacementRateCardLine records are returned for every parent PlacementRateCardLineGroup record. This means that if a parent PlacementRateCardLineGroup record contains more than 15 related PlacementRateCardLine records, ex. 17, only the top 15 related records are returned. This is due to Bullhorn CRM API limitations, as stated in the BullhornCRM API Reference Documentation.

  • The ORDER BY clause is processed server side only for the parent identifier column PlacementRateCardLineGroupId, as in the example below. For every other column or columns set, the ORDER BY clause is processed client side.

    SELECT * FROM PlacementRateCardLine ORDER BY PlacementRateCardLineGroupId DESC
    
Columns
Name Type ReadOnly Description
id [KEY] Int False
Alias String False
BillCurrencyUnitId Int False
BillMultiplier Decimal False
BillRate Decimal False
EarnCodeId Int False
MarkupPercent Decimal False
MarkupValue Decimal False
PayCurrencyUnitId Int False
PayMultiplier Decimal False
PayRate Decimal False
PlacementRateCardLineGroupId Int False

PlacementRateCardLineGroup

Create, update, delete and query data of 'PlacementRateCardLineGroup' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
id [KEY] Int False
BaseRate Bool False
earnCodeGroupID Int False
externalID String False
migrateGUID String False
placementRateCardVersionID Int False
placementRateCardVersionID2Id Int False

PrimaryEntityToAssociatedEntityAssociations

Create, delete and query the Id-s of associated records between a PrimaryEntity and an AssociatedEntity entities in BullhornCRM system.

Note

The Associations Tables are not exposed unless the ExpandAssociations connection property is set to 'True'.

Select

The connector will use the Bullhorn CRM API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the connector.

  • The PrimaryEntityId and AssociatedEntityId columns support the =, AND, OR, !=, >, >=, <, <=, IN operators when specified in the WHERE clause conditions.
  • The IsPrimaryRecordDeleted pseudocolumn supports only the = operator when specified in the WHERE clause conditions.

Due to the Bullhorn CRM REST API limitations, when the PrimaryEntityId is not specified, only the top 15 associated entity record Id-s are returned for every primary entity record. In order to retrieve every associated entity record ID for a certain primary entity record, you will need to specify the PrimaryEntityId. You can specify either one primary entity record ID using the = operator, or you can specify a list of primary entity record Id-s using the IN operator.

The example query below returns all PrimarySkills record Id-s associated to the Candidate with ID '760807'.

SELECT CandidateId, PrimarySkillsId FROM CandidateToPrimarySkillsAssociations WHERE CandidateId = '760807'

The example query below returns all PrimarySkills record Id-s associated to every Candidate specified in the IN list.

SELECT CandidateId, PrimarySkillsId FROM CandidateToPrimarySkillsAssociations WHERE CandidateId IN ('760592', '760807', '761036', '761225')
INSERT

To create a new association between two entity records, you will need to specify the existing primary entity record ID and the existing associated entity record Id.

INSERT INTO CandidateToPrimarySkillsAssociations (CandidateId, PrimarySkillsId) VALUES ('761036', '1000369')
DELETE

To delete an existing association between two entity records, you will need to specify the existing primary entity record ID and the existing associated entity record Id.

DELETE FROM CandidateToPrimarySkillsAssociations WHERE CandidateId = '761036' AND PrimarySkillsId = '1000369'
Columns
Name Type ReadOnly Description
PrimaryEntityId [KEY] Int False The ID of the 'PrimaryEntity' associated entity.
AssociatedEntityId [KEY] Int False The ID of the 'AssociatedEntity' associated entity.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
IsPrimaryRecordDeleted Bool Weather or not the record of the 'PrimaryEntity' entity is deleted.

Report

Create, update, delete and query data of 'Report' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Report.
CognosType String False The CognosType of the Report.
Dashboard Bool False The Dashboard of the Report.
DateAdded Datetime False The DateAdded of the Report.
DateLastModified Datetime False The DateLastModified of the Report.
Description String False The Description of the Report.
Name String False The Name of the Report.
OldReportID Int False The OldReportID of the Report.
OwnerId Int False The OwnerId of the Report.
PackageName String False The PackageName of the Report.
Path String False The Path of the Report.
ReportJar String False The ReportJar of the Report.
ReportRTF String False The ReportRTF of the Report.
ReportXML String False The ReportXML of the Report.
SqlData String False The SqlData of the Report.
Type String False The Type of the Report.
Version Int False The Version of the Report.

SalesQuota

Create, update, delete and query data of 'SalesQuota' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the SalesQuota.
Attained Int False The Attained of the SalesQuota.
CorporationDepartmentId Int False The CorporationDepartmentId of the SalesQuota.
DealCount Int False The DealCount of the SalesQuota.
Department String False The Department of the SalesQuota.
EndDate Date False The EndDate of the SalesQuota.
Name String False The Name of the SalesQuota.
OwnerId Int False The OwnerId of the SalesQuota.
PercentAttained Int False The PercentAttained of the SalesQuota.
Period String False The Period of the SalesQuota.
Quota Int False The Quota of the SalesQuota.
StartDate Date False The StartDate of the SalesQuota.

SalesTaxRateEditHistory

Create, update, delete and query data of 'SalesTaxRateEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the SalesTaxRateEditHistory.
AuditTrail String False The AuditTrail of the SalesTaxRateEditHistory.
DateAdded Datetime False The DateAdded of the SalesTaxRateEditHistory.
EffectiveDateChangeId Int False The EffectiveDateChangeId of the SalesTaxRateEditHistory.
MigrateGUID String False The MigrateGUID of the SalesTaxRateEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the SalesTaxRateEditHistory.
TransactionID String False The TransactionID of the SalesTaxRateEditHistory.
VersionID Int False The VersionID of the SalesTaxRateEditHistory.

SalesTaxRateEditHistoryFieldChange

Create, update, delete and query data of 'SalesTaxRateEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the SalesTaxRateEditHistoryFieldChange.
ColumnName String False The ColumnName of the SalesTaxRateEditHistoryFieldChange.
Display String False The Display of the SalesTaxRateEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the SalesTaxRateEditHistoryFieldChange.
EntityFieldTypeLookupId Int False The EntityFieldTypeLookupId of the SalesTaxRateEditHistoryFieldChange.
NewValue String False The NewValue of the SalesTaxRateEditHistoryFieldChange.
OldValue String False The OldValue of the SalesTaxRateEditHistoryFieldChange.

SalesTaxRateEffectiveDateChange

Create, update, delete and query data of 'SalesTaxRateEffectiveDateChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the SalesTaxRateEffectiveDateChange.
EditHistoryId Int False The EditHistoryId of the SalesTaxRateEffectiveDateChange.
NewEffectiveDate Date False The NewEffectiveDate of the SalesTaxRateEffectiveDateChange.
PreviousEffectiveDate Date False The PreviousEffectiveDate of the SalesTaxRateEffectiveDateChange.

Sendout

Create, update, delete and query data of 'Sendout' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Sendout.
CandidateId Int False The CandidateId of the Sendout.
ClientContactId Int False The ClientContactId of the Sendout.
CompanyId Int False The CompanyId of the Sendout.
DateSent Datetime False The DateSent of the Sendout.
Email String False The Email of the Sendout.
JobId Int False The JobId of the Sendout.
JobSubmissionId Int False The JobSubmissionId of the Sendout.
MigrateGUID String False The MigrateGUID of the Sendout.
NumTimesRead Bool False The NumTimesRead of the Sendout.
NumTimesRead2 Int False The NumTimesRead2 of the Sendout.
SenderId Int False The SenderId of the Sendout.

Shift

Create, update, delete and query data of 'Shift' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Shift.
ClientCorporationId Int False The ClientCorporationId of the Shift.
Color String False The Color of the Shift.
DateLastModified Datetime False The DateLastModified of the Shift.
DayofWeek Int False The DayofWeek of the Shift.
EndTime Datetime False The EndTime of the Shift.
IsDefault Bool False The IsDefault of the Shift.
LastModifiedById Int False The LastModifiedById of the Shift.
LongName String False The LongName of the Shift.
MigrateGUID String False The MigrateGUID of the Shift.
ShortName String False The ShortName of the Shift.
StartTime Datetime False The StartTime of the Shift.
Type String False The Type of the Shift.

Skill

Create, update, delete and query data of 'Skill' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Skill.
Enabled Bool False The Enabled of the Skill.
Name String False The Name of the Skill.

Specialty

Create, update, delete and query data of 'Specialty' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Specialty.
DateAdded Datetime False The DateAdded of the Specialty.
Enabled Bool False The Enabled of the Specialty.
Name String False The Name of the Specialty.
ParentCategoryId Int False The ParentCategoryId of the Specialty.

State

Create, update, delete and query data of 'State' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the State.
Code String False The Code of the State.
CountryId Int False The CountryId of the State.
Name String False The Name of the State.

Task

Create, update, delete and query data of 'Task' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Task.
CandidateId Int False The CandidateId of the Task.
ClientContactId Int False The ClientContactId of the Task.
CommunicationMethod String False The CommunicationMethod of the Task.
DateAdded Datetime False The DateAdded of the Task.
DateCompleted Datetime False The DateCompleted of the Task.
DateEnd Datetime False The DateEnd of the Task.
DateLastModified Datetime False The DateLastModified of the Task.
Description String False The Description of the Task.
DueDateAndTime Datetime False The DueDateAndTime of the Task.
IsCompleted Bool False The IsCompleted of the Task.
IsSystemTask Bool False The IsSystemTask of the Task.
IsTask Int False The IsTask of the Task.
JobId Int False The JobId of the Task.
JobMatchId Int False The JobMatchId of the Task.
Location String False The Location of the Task.
MigrateGUID String False The MigrateGUID of the Task.
OwnerId Int False The OwnerId of the Task.
ParentTaskId Int False The ParentTaskId of the Task.
PlacementId Int False The PlacementId of the Task.
Priority Int False The Priority of the Task.
RecurrenceDayBits Int False The RecurrenceDayBits of the Task.
RecurrenceFrequency Int False The RecurrenceFrequency of the Task.
RecurrenceMax Int False The RecurrenceMax of the Task.
RecurrenceMonthBits Int False The RecurrenceMonthBits of the Task.
RecurrenceStyle String False The RecurrenceStyle of the Task.
RecurrenceType String False The RecurrenceType of the Task.
Reminder Int False The Reminder of the Task.
Subject String False The Subject of the Task.
TaskUUID String False The TaskUUID of the Task.
TimeZoneID String False The TimeZoneID of the Task.
Type String False The Type of the Task.
Visibility Bool False The Visibility of the Task.
IsDeleted Bool False The IsDeleted of the Task.

TaskEditHistory

Create, update, delete and query data of 'TaskEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the TaskEditHistory.
AuditTrail String False The AuditTrail of the TaskEditHistory.
DateAdded Datetime False The DateAdded of the TaskEditHistory.
MigrateGUID String False The MigrateGUID of the TaskEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the TaskEditHistory.
TargetEntityId Int False The TargetEntityId of the TaskEditHistory.
TransactionID String False The TransactionID of the TaskEditHistory.

TaskEditHistoryFieldChange

Create, update, delete and query data of 'TaskEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the TaskEditHistoryFieldChange.
ColumnName String False The ColumnName of the TaskEditHistoryFieldChange.
Display String False The Display of the TaskEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the TaskEditHistoryFieldChange.
NewValue String False The NewValue of the TaskEditHistoryFieldChange.
OldValue String False The OldValue of the TaskEditHistoryFieldChange.

Tearsheet

Create, update, delete and query data of 'Tearsheet' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the Tearsheet.
DateAdded Datetime False The DateAdded of the Tearsheet.
DateLastModified Datetime False The DateLastModified of the Tearsheet.
Description String False The Description of the Tearsheet.
IsPrivate Bool False The IsPrivate of the Tearsheet.
Name String False The Name of the Tearsheet.
OwnerId Int False The OwnerId of the Tearsheet.
Type Bool False The Type of the Tearsheet.
IsDeleted Bool False The IsDeleted of the Tearsheet.

TearsheetMember

Create, update, delete and query data of 'TearsheetMember' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the TearsheetMember.
DateAdded Datetime False The DateAdded of the TearsheetMember.
PersonId Int False The PersonId of the TearsheetMember.
TearsheetId Int False The TearsheetId of the TearsheetMember.

TearsheetRecipient

Create, update, delete and query data of 'TearsheetRecipient' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the TearsheetRecipient.
CandidateRestrictionBits Int False The CandidateRestrictionBits of the TearsheetRecipient.
Comments String False The Comments of the TearsheetRecipient.
DateAdded Datetime False The DateAdded of the TearsheetRecipient.
IsSent Bool False The IsSent of the TearsheetRecipient.
JobOrderId Int False The JobOrderId of the TearsheetRecipient.
PersonId Int False The PersonId of the TearsheetRecipient.
TearsheetId Int False The TearsheetId of the TearsheetRecipient.

TimeUnit

Create, update, delete and query data of 'TimeUnit' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the TimeUnit.
Name String False The Name of the TimeUnit.
TimeMarker Int False The TimeMarker of the TimeUnit.
WeekDay Int False The WeekDay of the TimeUnit.

UserEditHistory

Create, update, delete and query data of 'UserEditHistory' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the UserEditHistory.
AuditTrail String False The AuditTrail of the UserEditHistory.
DateAdded Datetime False The DateAdded of the UserEditHistory.
MigrateGUID String False The MigrateGUID of the UserEditHistory.
ModifyingPersonId Int False The ModifyingPersonId of the UserEditHistory.
TargetEntityId Int False The TargetEntityId of the UserEditHistory.
TransactionID String False The TransactionID of the UserEditHistory.

UserEditHistoryFieldChange

Create, update, delete and query data of 'UserEditHistoryFieldChange' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the UserEditHistoryFieldChange.
ColumnName String False The ColumnName of the UserEditHistoryFieldChange.
Display String False The Display of the UserEditHistoryFieldChange.
EditHistoryId Int False The EditHistoryId of the UserEditHistoryFieldChange.
NewValue String False The NewValue of the UserEditHistoryFieldChange.
OldValue String False The OldValue of the UserEditHistoryFieldChange.

UserHousingComplexUnit

Create, update, delete and query data of 'UserHousingComplexUnit' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the UserHousingComplexUnit.
CandidateId Int False The CandidateId of the UserHousingComplexUnit.
DateBegin Datetime False The DateBegin of the UserHousingComplexUnit.
DateEnd Datetime False The DateEnd of the UserHousingComplexUnit.
Deduction String False The Deduction of the UserHousingComplexUnit.
MigrateGUID String False The MigrateGUID of the UserHousingComplexUnit.
PlacementId Int False The PlacementId of the UserHousingComplexUnit.
UnitId Int False The UnitId of the UserHousingComplexUnit.
IsDeleted Bool False The IsDeleted of the UserHousingComplexUnit.

UserPulseCallLog

Create, update, delete and query data of 'UserPulseCallLog' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the UserPulseCallLog.
DateAdded Datetime False The DateAdded of the UserPulseCallLog.
Direction String False The Direction of the UserPulseCallLog.
Duration Int False The Duration of the UserPulseCallLog.
PhoneNumber String False The PhoneNumber of the UserPulseCallLog.
TimeOfCall Datetime False The TimeOfCall of the UserPulseCallLog.
UserId Int False The UserId of the UserPulseCallLog.

UserPulseCallLogContact

Create, update, delete and query data of 'UserPulseCallLogContact' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the UserPulseCallLogContact.
UserId Int False The UserId of the UserPulseCallLogContact.
UserPulseCallLogId Int False The UserPulseCallLogId of the UserPulseCallLogContact.

UserType

Create, update, delete and query data of 'UserType' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the UserType.
DateAdded Datetime False The DateAdded of the UserType.
Description String False The Description of the UserType.
Enabled Bool False The Enabled of the UserType.
IsHidden Bool False The IsHidden of the UserType.
Name String False The Name of the UserType.

WorkersCompensation

Create, update, delete and query data of 'WorkersCompensation' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the WorkersCompensation.
Code String False The Code of the WorkersCompensation.
Description String False The Description of the WorkersCompensation.
Name String False The Name of the WorkersCompensation.
State String False The State of the WorkersCompensation.

WorkersCompensationRate

Create, update, delete and query data of 'WorkersCompensationRate' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] Int False The ID of the WorkersCompensationRate.
CompensationId Int False The CompensationId of the WorkersCompensationRate.
EndDate Datetime False The EndDate of the WorkersCompensationRate.
Rate Double False The Rate of the WorkersCompensationRate.
StartDate Datetime False The StartDate of the WorkersCompensationRate.

ZipCodeGis

Create, update, delete and query data of 'ZipCodeGis' entity in BullhornCRM system.

Columns
Name Type ReadOnly Description
Id [KEY] String False The ID of the ZipCodeGis.
AreaCode String False The AreaCode of the ZipCodeGis.
City String False The City of the ZipCodeGis.
CountryID Int False The CountryID of the ZipCodeGis.
Latitude Double False The Latitude of the ZipCodeGis.
LatitudeActual Double False The LatitudeActual of the ZipCodeGis.
Longitude Double False The Longitude of the ZipCodeGis.
LongitudeActual Double False The LongitudeActual of the ZipCodeGis.
State String False The State of the ZipCodeGis.

Views

Views are similar to tables in the way that data is represented; however, views are read-only.

Queries can be executed against a view as if it were a normal table.

Bullhorn CRM Connector Views

Name Description
CandidateCustomSearchLayout Read data of the 'CustomSearch' layout of the 'Candidate' entity in BullhornCRM system.
CandidateFasterFindLayout Read data of the 'FasterFind' layout of the 'Candidate' entity in BullhornCRM system.
CandidateListExpandedLeftLayout Read data of the 'ListExpandedLeft' layout of the 'Candidate' entity in BullhornCRM system.
CandidateListRowLayout Read data of the 'ListRow' layout of the 'Candidate' entity in BullhornCRM system.
CandidateMobileDetailsLayout Read data of the 'Mobile Details' layout of the 'Candidate' entity in BullhornCRM system.
CandidateMobileEditLayout Read data of the 'Mobile Edit' layout of the 'Candidate' entity in BullhornCRM system.
CandidateOverviewBottomLayout Read data of the 'OverviewBottom' layout of the 'Candidate' entity in BullhornCRM system.
CandidateOverviewMiddleLeftLayout Read data of the 'OverviewMiddleLeft' layout of the 'Candidate' entity in BullhornCRM system.
CandidateOverviewMiddleRightLayout Read data of the 'OverviewMiddleRight' layout of the 'Candidate' entity in BullhornCRM system.
CandidateOverviewTopLayout Read data of the 'OverviewTop' layout of the 'Candidate' entity in BullhornCRM system.
CandidateProfileHeaderLayout Read data of the 'ProfileHeader' layout of the 'Candidate' entity in BullhornCRM system.
CandidateProfileRightSideBarLayout Read data of the 'ProfileRightSideBar' layout of the 'Candidate' entity in BullhornCRM system.
EntityFiles List the attached files to an entity.
Find Execute a raw text search against the entities, ClientContact, JobOrder, Candidate, ClientCorporation, Lead, Opportunity.
JobOrderFasterFindLayout Read data of the 'FasterFind' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderListExpandedCenterLayout Read data of the 'ListExpandedCenter' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderListExpandedLeftLayout Read data of the 'ListExpandedLeft' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderListExpandedRightLayout Read data of the 'ListExpandedRight' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderListRowLayout Read data of the 'ListRow' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderMobileDetailsLayout Read data of the 'Mobile Details' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderMobileEditLayout Read data of the 'Mobile Edit' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderOverviewBottomLayout Read data of the 'OverviewBottom' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderOverviewMiddleLeftLayout Read data of the 'OverviewMiddleLeft' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderOverviewMiddleRightLayout Read data of the 'OverviewMiddleRight' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderProfileHeaderLayout Read data of the 'ProfileHeader' layout of the 'JobOrder' entity in BullhornCRM system.
JobOrderProfileRightSideBarLayout Read data of the 'ProfileRightSideBar' layout of the 'JobOrder' entity in BullhornCRM system.
SavedSearches List the available saved searches.
SavedSearch_AA_pipeline Query records of the 'AA - pipeline' saved search on 'CANDIDATE' entity.
SavedSearch_AK_06_26_19_NEW_DAI_search Query records of the 'AK 06/26/19 NEW DAI search' saved search on 'CANDIDATE' entity.
SavedSearch_AK_BROAD_Controls Query records of the 'AK BROAD Controls' saved search on 'CANDIDATE' entity.
SavedSearch_Alex_Bruno_Candidates Query records of the 'Alex Bruno Candidates' saved search on 'CANDIDATE' entity.
SavedSearch_Anna_Allen_Prospect_and_Pipeline Query records of the 'Anna Allen- Prospect and Pipeline' saved search on 'CANDIDATE' entity.
SavedSearch_Anna_W\_Pipeline Query records of the 'Anna W Pipeline' saved search on 'CANDIDATE' entity.
SavedSearch_assembler_tearsheets Query records of the 'assembler tearsheets' saved search on 'CANDIDATE' entity.
SavedSearch_Chandlers_Pipeline Query records of the 'Chandlers Pipeline' saved search on 'CANDIDATE' entity.
SavedSearch_Kroger_Recruiter_Admin Query records of the 'Kroger Recruiter Admin' saved search on 'CANDIDATE' entity.
SavedSearch_mandy_pros_pipe Query records of the 'mandy pros/pipe' saved search on 'CANDIDATE' entity.
SavedSearch_Mechanical_Designer Query records of the 'Mechanical Designer' saved search on 'CANDIDATE' entity.
SavedSearch_QE_KY_search Query records of the 'QE KY search' saved search on 'CANDIDATE' entity.
SavedSearch_Scott_s\_targets Query records of the 'Scott's targets' saved search on 'CLIENTCONTACT' entity.
SavedSearch_Sourced Query records of the 'Sourced' saved search on 'CANDIDATE' entity.
SavedSearch_Taylor_Hunt_Prospects_Pipeline Query records of the 'Taylor Hunt Prospects/ Pipeline' saved search on 'CANDIDATE' entity.
SavedSearch_Test_favorites Query records of the 'Test favorites' saved search on 'CANDIDATE' entity.
SavedSearch_Wiring_Tech_Fairfield Query records of the 'Wiring Tech. Fairfield' saved search on 'CANDIDATE' entity.

CandidateCustomSearchLayout

Read data of the 'CustomSearch' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the CandidateCustomSearchLayout.
AddressCity String The AddressCity of the CandidateCustomSearchLayout.
AddressState String The AddressState of the CandidateCustomSearchLayout.
AddressZip String The AddressZip of the CandidateCustomSearchLayout.
CurrentCompany String The CurrentCompany of the CandidateCustomSearchLayout.
CurrentPayRate String The CurrentPayRate of the CandidateCustomSearchLayout.
CurrentSalary String The CurrentSalary of the CandidateCustomSearchLayout.
DateAvailable Datetime The DateAvailable of the CandidateCustomSearchLayout.
DesiredLocations String The DesiredLocations of the CandidateCustomSearchLayout.
DesiredPayRate String The DesiredPayRate of the CandidateCustomSearchLayout.
DesiredSalary String The DesiredSalary of the CandidateCustomSearchLayout.
Email1 String The Email1 of the CandidateCustomSearchLayout.
Email2 String The Email2 of the CandidateCustomSearchLayout.
EmployeeType String The EmployeeType of the CandidateCustomSearchLayout.
EmploymentPreference String The EmploymentPreference of the CandidateCustomSearchLayout.
Fax String The Fax of the CandidateCustomSearchLayout.
GeneralCandidateComments String The GeneralCandidateComments of the CandidateCustomSearchLayout.
HomePhone String The HomePhone of the CandidateCustomSearchLayout.
MobilePhone String The MobilePhone of the CandidateCustomSearchLayout.
OtherPhone String The OtherPhone of the CandidateCustomSearchLayout.
ReferredbyOther String The ReferredbyOther of the CandidateCustomSearchLayout.
ReferredById Int The ReferredById of the CandidateCustomSearchLayout.
Source String The Source of the CandidateCustomSearchLayout.
Status String The Status of the CandidateCustomSearchLayout.
Title String The Title of the CandidateCustomSearchLayout.
WorkPhone String The WorkPhone of the CandidateCustomSearchLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateFasterFindLayout

Read data of the 'FasterFind' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
Id [KEY] Int The ID of the CandidateFasterFindLayout.
MobilePhone String The MobilePhone of the CandidateFasterFindLayout.
OtherPhone String The OtherPhone of the CandidateFasterFindLayout.
OwnershipId Int The OwnershipId of the CandidateFasterFindLayout.
Status String The Status of the CandidateFasterFindLayout.
Title String The Title of the CandidateFasterFindLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateListExpandedLeftLayout

Read data of the 'ListExpandedLeft' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
CandidateName String The CandidateName of the CandidateListExpandedLeftLayout.
CandidateName2 String The CandidateName2 of the CandidateListExpandedLeftLayout.
CurrentCompany String The CurrentCompany of the CandidateListExpandedLeftLayout.
Email1 String The Email1 of the CandidateListExpandedLeftLayout.
HomePhone String The HomePhone of the CandidateListExpandedLeftLayout.
MobilePhone String The MobilePhone of the CandidateListExpandedLeftLayout.
OwnershipId Int The OwnershipId of the CandidateListExpandedLeftLayout.
Title String The Title of the CandidateListExpandedLeftLayout.
WorkPhone String The WorkPhone of the CandidateListExpandedLeftLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateListRowLayout

Read data of the 'ListRow' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
Id [KEY] Int The ID of the CandidateListRowLayout.
DateAvailable Datetime The DateAvailable of the CandidateListRowLayout.
EmploymentPreference String The EmploymentPreference of the CandidateListRowLayout.
HomePhone String The HomePhone of the CandidateListRowLayout.
OwnershipId Int The OwnershipId of the CandidateListRowLayout.
Status String The Status of the CandidateListRowLayout.
Title String The Title of the CandidateListRowLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateMobileDetailsLayout

Read data of the 'Mobile Details' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the CandidateMobileDetailsLayout.
AddressAddress2 String The AddressAddress2 of the CandidateMobileDetailsLayout.
AddressCity String The AddressCity of the CandidateMobileDetailsLayout.
AddressCountry Int The AddressCountry of the CandidateMobileDetailsLayout.
AddresscountryCode String The AddresscountryCode of the CandidateMobileDetailsLayout.
AddresscountryName String The AddresscountryName of the CandidateMobileDetailsLayout.
AddressState String The AddressState of the CandidateMobileDetailsLayout.
AddressZip String The AddressZip of the CandidateMobileDetailsLayout.
CandidateName String The CandidateName of the CandidateMobileDetailsLayout.
CandidateName2 String The CandidateName2 of the CandidateMobileDetailsLayout.
Email1 String The Email1 of the CandidateMobileDetailsLayout.
EmployeeType String The EmployeeType of the CandidateMobileDetailsLayout.
EmploymentPreference String The EmploymentPreference of the CandidateMobileDetailsLayout.
HomePhone String The HomePhone of the CandidateMobileDetailsLayout.
MobilePhone String The MobilePhone of the CandidateMobileDetailsLayout.
OwnershipId Int The OwnershipId of the CandidateMobileDetailsLayout.
Status String The Status of the CandidateMobileDetailsLayout.
Title String The Title of the CandidateMobileDetailsLayout.
WorkPhone String The WorkPhone of the CandidateMobileDetailsLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateMobileEditLayout

Read data of the 'Mobile Edit' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the CandidateMobileEditLayout.
AddressAddress2 String The AddressAddress2 of the CandidateMobileEditLayout.
AddressCity String The AddressCity of the CandidateMobileEditLayout.
AddressCountry Int The AddressCountry of the CandidateMobileEditLayout.
AddresscountryCode String The AddresscountryCode of the CandidateMobileEditLayout.
AddresscountryName String The AddresscountryName of the CandidateMobileEditLayout.
AddressState String The AddressState of the CandidateMobileEditLayout.
AddressZip String The AddressZip of the CandidateMobileEditLayout.
CandidateName String The CandidateName of the CandidateMobileEditLayout.
CandidateName2 String The CandidateName2 of the CandidateMobileEditLayout.
Email1 String The Email1 of the CandidateMobileEditLayout.
EmployeeType String The EmployeeType of the CandidateMobileEditLayout.
EmploymentPreference String The EmploymentPreference of the CandidateMobileEditLayout.
HomePhone String The HomePhone of the CandidateMobileEditLayout.
MobilePhone String The MobilePhone of the CandidateMobileEditLayout.
Status String The Status of the CandidateMobileEditLayout.
Title String The Title of the CandidateMobileEditLayout.
WorkPhone String The WorkPhone of the CandidateMobileEditLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateOverviewBottomLayout

Read data of the 'OverviewBottom' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
Resume String The Resume of the CandidateOverviewBottomLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateOverviewMiddleLeftLayout

Read data of the 'OverviewMiddleLeft' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
CurrentPayRate String The CurrentPayRate of the CandidateOverviewMiddleLeftLayout.
DesiredPayRate String The DesiredPayRate of the CandidateOverviewMiddleLeftLayout.
Title String The Title of the CandidateOverviewMiddleLeftLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateOverviewMiddleRightLayout

Read data of the 'OverviewMiddleRight' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
Email1 String The Email1 of the CandidateOverviewMiddleRightLayout.
Email2 String The Email2 of the CandidateOverviewMiddleRightLayout.
HomePhone String The HomePhone of the CandidateOverviewMiddleRightLayout.
MobilePhone String The MobilePhone of the CandidateOverviewMiddleRightLayout.
OtherPhone String The OtherPhone of the CandidateOverviewMiddleRightLayout.
WorkPhone String The WorkPhone of the CandidateOverviewMiddleRightLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateOverviewTopLayout

Read data of the 'OverviewTop' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
GeneralCandidateComments String The GeneralCandidateComments of the CandidateOverviewTopLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateProfileHeaderLayout

Read data of the 'ProfileHeader' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
Id [KEY] Int The ID of the CandidateProfileHeaderLayout.
CandidateName String The CandidateName of the CandidateProfileHeaderLayout.
CandidateName2 String The CandidateName2 of the CandidateProfileHeaderLayout.
HomePhone String The HomePhone of the CandidateProfileHeaderLayout.
MobilePhone String The MobilePhone of the CandidateProfileHeaderLayout.
Nickname String The Nickname of the CandidateProfileHeaderLayout.
WorkPhone String The WorkPhone of the CandidateProfileHeaderLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

CandidateProfileRightSideBarLayout

Read data of the 'ProfileRightSideBar' layout of the 'Candidate' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the CandidateProfileRightSideBarLayout.
AddressAddress2 String The AddressAddress2 of the CandidateProfileRightSideBarLayout.
AddressCity String The AddressCity of the CandidateProfileRightSideBarLayout.
AddressCountry Int The AddressCountry of the CandidateProfileRightSideBarLayout.
AddresscountryCode String The AddresscountryCode of the CandidateProfileRightSideBarLayout.
AddresscountryName String The AddresscountryName of the CandidateProfileRightSideBarLayout.
AddressState String The AddressState of the CandidateProfileRightSideBarLayout.
AddressZip String The AddressZip of the CandidateProfileRightSideBarLayout.
CurrentCompany String The CurrentCompany of the CandidateProfileRightSideBarLayout.
DateAvailable Datetime The DateAvailable of the CandidateProfileRightSideBarLayout.
Email1 String The Email1 of the CandidateProfileRightSideBarLayout.
Email2 String The Email2 of the CandidateProfileRightSideBarLayout.
EmploymentPreference String The EmploymentPreference of the CandidateProfileRightSideBarLayout.
HomePhone String The HomePhone of the CandidateProfileRightSideBarLayout.
MobilePhone String The MobilePhone of the CandidateProfileRightSideBarLayout.
OtherPhone String The OtherPhone of the CandidateProfileRightSideBarLayout.
OwnershipId Int The OwnershipId of the CandidateProfileRightSideBarLayout.
Source String The Source of the CandidateProfileRightSideBarLayout.
Status String The Status of the CandidateProfileRightSideBarLayout.
Title String The Title of the CandidateProfileRightSideBarLayout.
WorkPhone String The WorkPhone of the CandidateProfileRightSideBarLayout.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
LuceneQuery String Enter a Lucene query to send it directly to the BullhornCRM API. Note that other filters won't work if this is specified.

EntityFiles

List the attached files to an entity.

View Specific Information

Use this view as a helper in case you need the file unique identifiers, for the DownloadFile. Except the pseudo columns, no filters are handled server-side on this view. EntityType and EntityId must be specified to query from this view.

SELECT * FROM EntityFiles WHERE EntityType = 'Candidate' AND EntityId = '110011'
Columns
Name Type Description
Id [KEY] Int The unique identifier of the file.
Name String The name of the file.
DateAdded Datetime Datetime the file was added.
FileType String The type of the file.
Type String The type of the file.
FileExtension String The type of the file.
Description String A brief description of the file.
IsDeleted Boolean Whether or not the file is deleted.
IsPrivate Boolean Whether or not the file is private.
IsExternal Boolean Whether or not the file is external.
ContentType String The ContentType of the EntityFiles.
ContentSubType String The ContentSubType of the EntityFiles.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
EntityType String The entity type you want to list the attached files for. The available values are Candidate, ClientContact, ClientCorporation, JobOrder, Opportunity, Placement. The allowed values are Candidate, ClientContact, ClientCorporation, JobOrder, Opportunity, Placement.
EntityId String The unique identifier of the entity you want to list attached files from.

Find

Execute a raw text search against the entities, ClientContact, JobOrder, Candidate, ClientCorporation, Lead, Opportunity.

View Specific Information

Except the pseudo columns, no filters are handled server-side on this view. The 'Query' pseudo column must be specified when querying this view.

SELECT * FROM Find WHERE query = 'My search'
Columns
Name Type Description
EntityId [KEY] Int The unique identifier of an entity.
EntityType String The type of the entity.
ByLine String The results by line.
Location String Location of the entity.
Title String The title of the result.
Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
Query String A raw text you want to search for.

JobOrderFasterFindLayout

Read data of the 'FasterFind' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
Id [KEY] Int The ID of the JobOrderFasterFindLayout.
ClientCompanyId Int The ClientCompanyId of the JobOrderFasterFindLayout.
ContactId Int The ContactId of the JobOrderFasterFindLayout.
JobTitle String The JobTitle of the JobOrderFasterFindLayout.
OwnerId Int The OwnerId of the JobOrderFasterFindLayout.
Status String The Status of the JobOrderFasterFindLayout.

JobOrderListExpandedCenterLayout

Read data of the 'ListExpandedCenter' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
CertificationRequirements String The CertificationRequirements of the JobOrderListExpandedCenterLayout.
DegreeRequirements String The DegreeRequirements of the JobOrderListExpandedCenterLayout.

JobOrderListExpandedLeftLayout

Read data of the 'ListExpandedLeft' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the JobOrderListExpandedLeftLayout.
AddressCity String The AddressCity of the JobOrderListExpandedLeftLayout.
AddressStateorProvince String The AddressStateorProvince of the JobOrderListExpandedLeftLayout.
AddressZip String The AddressZip of the JobOrderListExpandedLeftLayout.
ClientCompanyId Int The ClientCompanyId of the JobOrderListExpandedLeftLayout.
ContactId Int The ContactId of the JobOrderListExpandedLeftLayout.

JobOrderListExpandedRightLayout

Read data of the 'ListExpandedRight' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
Ofopenings Int The Ofopenings of the JobOrderListExpandedRightLayout.
JobDescription String The JobDescription of the JobOrderListExpandedRightLayout.
MinimumExperience Int The MinimumExperience of the JobOrderListExpandedRightLayout.

JobOrderListRowLayout

Read data of the 'ListRow' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
Id [KEY] Int The ID of the JobOrderListRowLayout.
ClientBillRate String The ClientBillRate of the JobOrderListRowLayout.
ClientCompanyId Int The ClientCompanyId of the JobOrderListRowLayout.
EmploymentType String The EmploymentType of the JobOrderListRowLayout.
JobTitle String The JobTitle of the JobOrderListRowLayout.
OpenClosed Bool The OpenClosed of the JobOrderListRowLayout.
OwnerId Int The OwnerId of the JobOrderListRowLayout.
PayRate String The PayRate of the JobOrderListRowLayout.
Priority Int The Priority of the JobOrderListRowLayout.
Status String The Status of the JobOrderListRowLayout.

JobOrderMobileDetailsLayout

Read data of the 'Mobile Details' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the JobOrderMobileDetailsLayout.
AddressCity String The AddressCity of the JobOrderMobileDetailsLayout.
AddressCountry Int The AddressCountry of the JobOrderMobileDetailsLayout.
AddressStateorProvince String The AddressStateorProvince of the JobOrderMobileDetailsLayout.
AddressZip String The AddressZip of the JobOrderMobileDetailsLayout.
ContactId Int The ContactId of the JobOrderMobileDetailsLayout.
EmploymentType String The EmploymentType of the JobOrderMobileDetailsLayout.
JobDescription String The JobDescription of the JobOrderMobileDetailsLayout.
JobTitle String The JobTitle of the JobOrderMobileDetailsLayout.
OwnerId Int The OwnerId of the JobOrderMobileDetailsLayout.
StartDate Datetime The StartDate of the JobOrderMobileDetailsLayout.

JobOrderMobileEditLayout

Read data of the 'Mobile Edit' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
AddressAddress String The AddressAddress of the JobOrderMobileEditLayout.
AddressCity String The AddressCity of the JobOrderMobileEditLayout.
AddressCountry Int The AddressCountry of the JobOrderMobileEditLayout.
AddressStateorProvince String The AddressStateorProvince of the JobOrderMobileEditLayout.
AddressZip String The AddressZip of the JobOrderMobileEditLayout.
ContactId Int The ContactId of the JobOrderMobileEditLayout.
EmploymentType String The EmploymentType of the JobOrderMobileEditLayout.
JobDescription String The JobDescription of the JobOrderMobileEditLayout.
JobTitle String The JobTitle of the JobOrderMobileEditLayout.
OwnerId Int The OwnerId of the JobOrderMobileEditLayout.
StartDate Datetime The StartDate of the JobOrderMobileEditLayout.

JobOrderOverviewBottomLayout

Read data of the 'OverviewBottom' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
JobDescription String The JobDescription of the JobOrderOverviewBottomLayout.

JobOrderOverviewMiddleLeftLayout

Read data of the 'OverviewMiddleLeft' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
Ofopenings Int The Ofopenings of the JobOrderOverviewMiddleLeftLayout.
ClientBillRate String The ClientBillRate of the JobOrderOverviewMiddleLeftLayout.
PayRate String The PayRate of the JobOrderOverviewMiddleLeftLayout.
PayRate2 String The PayRate2 of the JobOrderOverviewMiddleLeftLayout.
Permfee Double The Permfee of the JobOrderOverviewMiddleLeftLayout.
Salary String The Salary of the JobOrderOverviewMiddleLeftLayout.

JobOrderOverviewMiddleRightLayout

Read data of the 'OverviewMiddleRight' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
CertificationRequirements String The CertificationRequirements of the JobOrderOverviewMiddleRightLayout.
DegreeRequirements String The DegreeRequirements of the JobOrderOverviewMiddleRightLayout.
EmploymentType String The EmploymentType of the JobOrderOverviewMiddleRightLayout.
JobTitle String The JobTitle of the JobOrderOverviewMiddleRightLayout.
Keywords String The Keywords of the JobOrderOverviewMiddleRightLayout.

JobOrderProfileHeaderLayout

Read data of the 'ProfileHeader' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
Id [KEY] Int The ID of the JobOrderProfileHeaderLayout.
JobTitle String The JobTitle of the JobOrderProfileHeaderLayout.

JobOrderProfileRightSideBarLayout

Read data of the 'ProfileRightSideBar' layout of the 'JobOrder' entity in BullhornCRM system.

Columns
Name Type Description
Ofopenings Int The Ofopenings of the JobOrderProfileRightSideBarLayout.
AddressAddress String The AddressAddress of the JobOrderProfileRightSideBarLayout.
AddressCity String The AddressCity of the JobOrderProfileRightSideBarLayout.
AddressCountry Int The AddressCountry of the JobOrderProfileRightSideBarLayout.
AddressStateorProvince String The AddressStateorProvince of the JobOrderProfileRightSideBarLayout.
AddressZip String The AddressZip of the JobOrderProfileRightSideBarLayout.
ClientBillRate String The ClientBillRate of the JobOrderProfileRightSideBarLayout.
ClientCompanyId Int The ClientCompanyId of the JobOrderProfileRightSideBarLayout.
ContactId Int The ContactId of the JobOrderProfileRightSideBarLayout.
EmploymentType String The EmploymentType of the JobOrderProfileRightSideBarLayout.
MinimumExperience Int The MinimumExperience of the JobOrderProfileRightSideBarLayout.
OpenClosed Bool The OpenClosed of the JobOrderProfileRightSideBarLayout.
OwnerId Int The OwnerId of the JobOrderProfileRightSideBarLayout.
PayRate String The PayRate of the JobOrderProfileRightSideBarLayout.
Permfee Double The Permfee of the JobOrderProfileRightSideBarLayout.
Priority Int The Priority of the JobOrderProfileRightSideBarLayout.
Salary String The Salary of the JobOrderProfileRightSideBarLayout.
StartDate Datetime The StartDate of the JobOrderProfileRightSideBarLayout.
Status String The Status of the JobOrderProfileRightSideBarLayout.

SavedSearches

List the available saved searches.

View Specific Information

No filters are handled server-side on this view.

Columns
Name Type Description
Id [KEY] Int The unique identifier of the saved search.
Name String The name of the saved search.
IndexType String The entity type the saved search was ran against.
Description String A brief description of the saved search.
Query String The query of the saved search.
OwnerId Int The unique identifier of the owner.
OwnerFirstName String The unique identifier of the owner.
OwnerLastName String The unique identifier of the owner.
DateAdded Date The date this saves search was added.
Favorite Boolean Whether or not this saved search is favorite.

SavedSearch_AA_pipeline

Query records of the 'AA - pipeline' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
DateAdded Datetime The DateAdded of the SavedSearch_AA_pipeline.
HomePhone String The HomePhone of the SavedSearch_AA_pipeline.
LastNote Datetime The LastNote of the SavedSearch_AA_pipeline.
MobilePhone String The MobilePhone of the SavedSearch_AA_pipeline.
Name String The Name of the SavedSearch_AA_pipeline.
OwnershipId Int The OwnershipId of the SavedSearch_AA_pipeline.
Status String The Status of the SavedSearch_AA_pipeline.
Title String The Title of the SavedSearch_AA_pipeline.
WorkPhone String The WorkPhone of the SavedSearch_AA_pipeline.

SavedSearch_AK_06_26_19_NEW_DAI_search

Query records of the 'AK 06/26/19 NEW DAI search' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
AddressAddress String The AddressAddress of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddressAddress2 String The AddressAddress2 of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddressCity String The AddressCity of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddressCountry Int The AddressCountry of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddresscountryCode String The AddresscountryCode of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddresscountryName String The AddresscountryName of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddressState String The AddressState of the SavedSearch_AK_06_26_19_NEW_DAI_search.
AddressZip String The AddressZip of the SavedSearch_AK_06_26_19_NEW_DAI_search.
Email1 String The Email1 of the SavedSearch_AK_06_26_19_NEW_DAI_search.
HomePhone String The HomePhone of the SavedSearch_AK_06_26_19_NEW_DAI_search.
LastNote Datetime The LastNote of the SavedSearch_AK_06_26_19_NEW_DAI_search.
MobilePhone String The MobilePhone of the SavedSearch_AK_06_26_19_NEW_DAI_search.
Name String The Name of the SavedSearch_AK_06_26_19_NEW_DAI_search.
OwnershipId Int The OwnershipId of the SavedSearch_AK_06_26_19_NEW_DAI_search.
Status String The Status of the SavedSearch_AK_06_26_19_NEW_DAI_search.
Title String The Title of the SavedSearch_AK_06_26_19_NEW_DAI_search.

SavedSearch_AK_BROAD_Controls

Query records of the 'AK BROAD Controls' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
AddressAddress String The AddressAddress of the SavedSearch_AK_BROAD_Controls.
AddressAddress2 String The AddressAddress2 of the SavedSearch_AK_BROAD_Controls.
AddressCity String The AddressCity of the SavedSearch_AK_BROAD_Controls.
AddressCountry Int The AddressCountry of the SavedSearch_AK_BROAD_Controls.
AddresscountryCode String The AddresscountryCode of the SavedSearch_AK_BROAD_Controls.
AddresscountryName String The AddresscountryName of the SavedSearch_AK_BROAD_Controls.
AddressState String The AddressState of the SavedSearch_AK_BROAD_Controls.
AddressZip String The AddressZip of the SavedSearch_AK_BROAD_Controls.
Email1 String The Email1 of the SavedSearch_AK_BROAD_Controls.
HomePhone String The HomePhone of the SavedSearch_AK_BROAD_Controls.
LastNote Datetime The LastNote of the SavedSearch_AK_BROAD_Controls.
MobilePhone String The MobilePhone of the SavedSearch_AK_BROAD_Controls.
Name String The Name of the SavedSearch_AK_BROAD_Controls.
OwnershipId Int The OwnershipId of the SavedSearch_AK_BROAD_Controls.
Status String The Status of the SavedSearch_AK_BROAD_Controls.
Title String The Title of the SavedSearch_AK_BROAD_Controls.

SavedSearch_Alex_Bruno_Candidates

Query records of the 'Alex Bruno Candidates' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
Id Int The ID of the SavedSearch_Alex_Bruno_Candidates.
AddressAddress String The AddressAddress of the SavedSearch_Alex_Bruno_Candidates.
AddressAddress2 String The AddressAddress2 of the SavedSearch_Alex_Bruno_Candidates.
AddressCity String The AddressCity of the SavedSearch_Alex_Bruno_Candidates.
AddressCountry Int The AddressCountry of the SavedSearch_Alex_Bruno_Candidates.
AddresscountryCode String The AddresscountryCode of the SavedSearch_Alex_Bruno_Candidates.
AddresscountryName String The AddresscountryName of the SavedSearch_Alex_Bruno_Candidates.
AddressState String The AddressState of the SavedSearch_Alex_Bruno_Candidates.
AddressZip String The AddressZip of the SavedSearch_Alex_Bruno_Candidates.
Email1 String The Email1 of the SavedSearch_Alex_Bruno_Candidates.
HomePhone String The HomePhone of the SavedSearch_Alex_Bruno_Candidates.
LastNote Datetime The LastNote of the SavedSearch_Alex_Bruno_Candidates.
Name String The Name of the SavedSearch_Alex_Bruno_Candidates.
OwnershipId Int The OwnershipId of the SavedSearch_Alex_Bruno_Candidates.
Status String The Status of the SavedSearch_Alex_Bruno_Candidates.
Title String The Title of the SavedSearch_Alex_Bruno_Candidates.

SavedSearch_Anna_Allen_Prospect_and_Pipeline

Query records of the 'Anna Allen- Prospect and Pipeline' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
CurrentCompany String The CurrentCompany of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
DateAdded Datetime The DateAdded of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
HomePhone String The HomePhone of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
LastNote Datetime The LastNote of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
MobilePhone String The MobilePhone of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
Name String The Name of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
OtherPhone String The OtherPhone of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
OwnershipId Int The OwnershipId of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
Source String The Source of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
Status String The Status of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
Title String The Title of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.
WorkPhone String The WorkPhone of the SavedSearch_Anna_Allen_Prospect_and_Pipeline.

SavedSearch_Anna_W_Pipeline

Query records of the 'Anna W Pipeline' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
Id Int The ID of the SavedSearch_Anna_W_Pipeline.
HomePhone String The HomePhone of the SavedSearch_Anna_W_Pipeline.
LastNote Datetime The LastNote of the SavedSearch_Anna_W_Pipeline.
MobilePhone String The MobilePhone of the SavedSearch_Anna_W_Pipeline.
Name String The Name of the SavedSearch_Anna_W_Pipeline.
OwnershipId Int The OwnershipId of the SavedSearch_Anna_W_Pipeline.
Status String The Status of the SavedSearch_Anna_W_Pipeline.
Title String The Title of the SavedSearch_Anna_W_Pipeline.

SavedSearch_assembler_tearsheets

Query records of the 'assembler tearsheets' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
CurrentCompany String The CurrentCompany of the SavedSearch_assembler_tearsheets.
DateAdded Datetime The DateAdded of the SavedSearch_assembler_tearsheets.
Email1 String The Email1 of the SavedSearch_assembler_tearsheets.
LastNote Datetime The LastNote of the SavedSearch_assembler_tearsheets.
MobilePhone String The MobilePhone of the SavedSearch_assembler_tearsheets.
Name String The Name of the SavedSearch_assembler_tearsheets.
OwnershipId Int The OwnershipId of the SavedSearch_assembler_tearsheets.
Status String The Status of the SavedSearch_assembler_tearsheets.
Title String The Title of the SavedSearch_assembler_tearsheets.
WorkPhone String The WorkPhone of the SavedSearch_assembler_tearsheets.

SavedSearch_Chandlers_Pipeline

Query records of the 'Chandlers Pipeline' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
CurrentCompany String The CurrentCompany of the SavedSearch_Chandlers_Pipeline.
HomePhone String The HomePhone of the SavedSearch_Chandlers_Pipeline.
LastNote Datetime The LastNote of the SavedSearch_Chandlers_Pipeline.
MobilePhone String The MobilePhone of the SavedSearch_Chandlers_Pipeline.
Name String The Name of the SavedSearch_Chandlers_Pipeline.
OwnershipId Int The OwnershipId of the SavedSearch_Chandlers_Pipeline.
Status String The Status of the SavedSearch_Chandlers_Pipeline.
Title String The Title of the SavedSearch_Chandlers_Pipeline.

SavedSearch_Kroger_Recruiter_Admin

Query records of the 'Kroger Recruiter Admin' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
CategoryId Int The CategoryId of the SavedSearch_Kroger_Recruiter_Admin.
DateAdded Datetime The DateAdded of the SavedSearch_Kroger_Recruiter_Admin.
HomePhone String The HomePhone of the SavedSearch_Kroger_Recruiter_Admin.
LastNote Datetime The LastNote of the SavedSearch_Kroger_Recruiter_Admin.
Name String The Name of the SavedSearch_Kroger_Recruiter_Admin.
Status String The Status of the SavedSearch_Kroger_Recruiter_Admin.

SavedSearch_mandy_pros_pipe

Query records of the 'mandy pros/pipe' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
AddressAddress String The AddressAddress of the SavedSearch_mandy_pros_pipe.
AddressAddress2 String The AddressAddress2 of the SavedSearch_mandy_pros_pipe.
AddressCity String The AddressCity of the SavedSearch_mandy_pros_pipe.
AddressCountry Int The AddressCountry of the SavedSearch_mandy_pros_pipe.
AddresscountryCode String The AddresscountryCode of the SavedSearch_mandy_pros_pipe.
AddresscountryName String The AddresscountryName of the SavedSearch_mandy_pros_pipe.
AddressState String The AddressState of the SavedSearch_mandy_pros_pipe.
AddressZip String The AddressZip of the SavedSearch_mandy_pros_pipe.
DateAdded Datetime The DateAdded of the SavedSearch_mandy_pros_pipe.
Email1 String The Email1 of the SavedSearch_mandy_pros_pipe.
HomePhone String The HomePhone of the SavedSearch_mandy_pros_pipe.
LastNote Datetime The LastNote of the SavedSearch_mandy_pros_pipe.
MobilePhone String The MobilePhone of the SavedSearch_mandy_pros_pipe.
Name String The Name of the SavedSearch_mandy_pros_pipe.
OwnershipId Int The OwnershipId of the SavedSearch_mandy_pros_pipe.
Status String The Status of the SavedSearch_mandy_pros_pipe.
Title String The Title of the SavedSearch_mandy_pros_pipe.
WorkPhone String The WorkPhone of the SavedSearch_mandy_pros_pipe.

SavedSearch_Mechanical_Designer

Query records of the 'Mechanical Designer' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
AddressAddress String The AddressAddress of the SavedSearch_Mechanical_Designer.
AddressAddress2 String The AddressAddress2 of the SavedSearch_Mechanical_Designer.
AddressCity String The AddressCity of the SavedSearch_Mechanical_Designer.
AddressCountry Int The AddressCountry of the SavedSearch_Mechanical_Designer.
AddresscountryCode String The AddresscountryCode of the SavedSearch_Mechanical_Designer.
AddresscountryName String The AddresscountryName of the SavedSearch_Mechanical_Designer.
AddressState String The AddressState of the SavedSearch_Mechanical_Designer.
AddressZip String The AddressZip of the SavedSearch_Mechanical_Designer.
DateAdded Datetime The DateAdded of the SavedSearch_Mechanical_Designer.
Email1 String The Email1 of the SavedSearch_Mechanical_Designer.
HomePhone String The HomePhone of the SavedSearch_Mechanical_Designer.
LastNote Datetime The LastNote of the SavedSearch_Mechanical_Designer.
MobilePhone String The MobilePhone of the SavedSearch_Mechanical_Designer.
Name String The Name of the SavedSearch_Mechanical_Designer.
OwnershipId Int The OwnershipId of the SavedSearch_Mechanical_Designer.
Status String The Status of the SavedSearch_Mechanical_Designer.
Title String The Title of the SavedSearch_Mechanical_Designer.

SavedSearch_QE_KY_search

Query records of the 'QE KY search' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
DateAdded Datetime The DateAdded of the SavedSearch_QE_KY_search.
Email1 String The Email1 of the SavedSearch_QE_KY_search.
HomePhone String The HomePhone of the SavedSearch_QE_KY_search.
LastNote Datetime The LastNote of the SavedSearch_QE_KY_search.
MobilePhone String The MobilePhone of the SavedSearch_QE_KY_search.
Name String The Name of the SavedSearch_QE_KY_search.
OwnershipId Int The OwnershipId of the SavedSearch_QE_KY_search.
Status String The Status of the SavedSearch_QE_KY_search.
Title String The Title of the SavedSearch_QE_KY_search.

SavedSearch_Scott_s_targets

Query records of the 'Scott's targets' saved search on 'CLIENTCONTACT' entity.

Columns
Name Type Description
CompanyId Int The CompanyId of the SavedSearch_Scott_s_targets.
DateAdded Datetime The DateAdded of the SavedSearch_Scott_s_targets.
DirectPhone String The DirectPhone of the SavedSearch_Scott_s_targets.
LastNote Datetime The LastNote of the SavedSearch_Scott_s_targets.
LastVisit Datetime The LastVisit of the SavedSearch_Scott_s_targets.
Name String The Name of the SavedSearch_Scott_s_targets.
OwnerId Int The OwnerId of the SavedSearch_Scott_s_targets.
Source String The Source of the SavedSearch_Scott_s_targets.
Status String The Status of the SavedSearch_Scott_s_targets.
Title String The Title of the SavedSearch_Scott_s_targets.
Type String The Type of the SavedSearch_Scott_s_targets.

SavedSearch_Sourced

Query records of the 'Sourced' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
AddressAddress String The AddressAddress of the SavedSearch_Sourced.
AddressAddress2 String The AddressAddress2 of the SavedSearch_Sourced.
AddressCity String The AddressCity of the SavedSearch_Sourced.
AddressCountry Int The AddressCountry of the SavedSearch_Sourced.
AddresscountryCode String The AddresscountryCode of the SavedSearch_Sourced.
AddresscountryName String The AddresscountryName of the SavedSearch_Sourced.
AddressState String The AddressState of the SavedSearch_Sourced.
AddressZip String The AddressZip of the SavedSearch_Sourced.
Email1 String The Email1 of the SavedSearch_Sourced.
HomePhone String The HomePhone of the SavedSearch_Sourced.
LastNote Datetime The LastNote of the SavedSearch_Sourced.
MobilePhone String The MobilePhone of the SavedSearch_Sourced.
Name String The Name of the SavedSearch_Sourced.
OwnershipId Int The OwnershipId of the SavedSearch_Sourced.
Status String The Status of the SavedSearch_Sourced.
Title String The Title of the SavedSearch_Sourced.
WorkPhone String The WorkPhone of the SavedSearch_Sourced.

SavedSearch_Taylor_Hunt_Prospects_Pipeline

Query records of the 'Taylor Hunt Prospects/ Pipeline' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
HomePhone String The HomePhone of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.
LastNote Datetime The LastNote of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.
MobilePhone String The MobilePhone of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.
Name String The Name of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.
OwnershipId Int The OwnershipId of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.
Status String The Status of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.
Title String The Title of the SavedSearch_Taylor_Hunt_Prospects_Pipeline.

SavedSearch_Test_favorites

Query records of the 'Test favorites' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
Id Int The ID of the SavedSearch_Test_favorites.
CategoryId Int The CategoryId of the SavedSearch_Test_favorites.
DateAdded Datetime The DateAdded of the SavedSearch_Test_favorites.
DateAvailable Datetime The DateAvailable of the SavedSearch_Test_favorites.
Email1 String The Email1 of the SavedSearch_Test_favorites.
EmploymentPreference String The EmploymentPreference of the SavedSearch_Test_favorites.
HomePhone String The HomePhone of the SavedSearch_Test_favorites.
LastNote Datetime The LastNote of the SavedSearch_Test_favorites.
Name String The Name of the SavedSearch_Test_favorites.
OwnershipId Int The OwnershipId of the SavedSearch_Test_favorites.
Status String The Status of the SavedSearch_Test_favorites.
Title String The Title of the SavedSearch_Test_favorites.

SavedSearch_Wiring_Tech_Fairfield

Query records of the 'Wiring Tech. Fairfield' saved search on 'CANDIDATE' entity.

Columns
Name Type Description
AddressAddress String The AddressAddress of the SavedSearch_Wiring_Tech_Fairfield.
AddressAddress2 String The AddressAddress2 of the SavedSearch_Wiring_Tech_Fairfield.
AddressCity String The AddressCity of the SavedSearch_Wiring_Tech_Fairfield.
AddressCountry Int The AddressCountry of the SavedSearch_Wiring_Tech_Fairfield.
AddresscountryCode String The AddresscountryCode of the SavedSearch_Wiring_Tech_Fairfield.
AddresscountryName String The AddresscountryName of the SavedSearch_Wiring_Tech_Fairfield.
AddressState String The AddressState of the SavedSearch_Wiring_Tech_Fairfield.
AddressZip String The AddressZip of the SavedSearch_Wiring_Tech_Fairfield.
Email1 String The Email1 of the SavedSearch_Wiring_Tech_Fairfield.
HomePhone String The HomePhone of the SavedSearch_Wiring_Tech_Fairfield.
LastNote Datetime The LastNote of the SavedSearch_Wiring_Tech_Fairfield.
MobilePhone String The MobilePhone of the SavedSearch_Wiring_Tech_Fairfield.
Name String The Name of the SavedSearch_Wiring_Tech_Fairfield.
OwnershipId Int The OwnershipId of the SavedSearch_Wiring_Tech_Fairfield.
Status String The Status of the SavedSearch_Wiring_Tech_Fairfield.
Title String The Title of the SavedSearch_Wiring_Tech_Fairfield.
WorkPhone String The WorkPhone of the SavedSearch_Wiring_Tech_Fairfield.

Stored Procedures

Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Bullhorn CRM.

Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Bullhorn CRM, along with an indication of whether the procedure succeeded or failed.

Bullhorn CRM Connector Stored Procedures

Name Description
CreateSchema Creates a schema file for the specified table or view.
DownloadFile Download a file attached to a specified entity.
GetOAuthAccessToken Gets an authentication token from BullhornCRM.
GetOAuthAuthorizationURL Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL.
RefreshOAuthAccessToken Use this procedure to refresh the access token.
UploadFile Upload a file to a specified entity.

CreateSchema

Creates a schema file for the specified table or view.

CreateSchema

Creates a local schema file (.rsd) from an existing table or view in the data model.

The schema file is created in the directory set in the Location connection property when this procedure is executed. You can edit the file to include or exclude columns, rename columns, or adjust column datatypes.

The connector checks the Location to determine if the names of any .rsd files match a table or view in the data model. If there is a duplicate, the schema file will take precedence over the default instance of this table in the data model. If a schema file is present in Location that does not match an existing table or view, a new table or view entry is added to the data model of the connector.

Input
Name Type Required Accepts Output Streams Description
TableName String True False The name of the table or view.
FileName String False False The full file path and name of the schema to generate. Ex : 'C:\Users\User\Desktop\BullhornCRM\Candidate.rsd'
FileStream String False True An instance of an output stream where file data is written to. Only used if FileName is not set.
Result Set Columns
Name Type Description
Result String Returns Success or Failure.
FileData String File data that will be outputted encoded in Base64 if the FileName and FileStream inputs are not set.

DownloadFile

Download a file attached to a specified entity.

Input
Name Type Required Accepts Output Streams Description
EntityType String True False The type of the entity to get the file from. This must be one of: Candidate, ClientContact, ClientCorporation, JobOrder, Opportunity, Placement. The allowed values are Candidate, ClientContact, ClientCorporation, JobOrder, Opportunity, Placement.
EntityId String True False The identifier of the entity. You can query the respective table to list all entities.
FileId String True False The identifier of the file. You can query the EntityFiles view to list all file Ids.
OutputFolder String False False The location of the folder you want to save the file in.
FileStream String False True An instance of an output stream where file data is written to. Only used if OutputFolder is not set.
Result Set Columns
Name Type Description
FileData String If the OutputFolder input is empty, file data will be output encoded in base64.
Success String Indicates whether or not the operation was successful.

GetOAuthAccessToken

Gets an authentication token from BullhornCRM.

Input
Name Type Required Description
AuthMode String False The type of authentication mode to use. Select App for getting authentication tokens via a desktop app. Select Web for getting authentication tokens via a Web app. The allowed values are APP, WEB. The default value is APP.
CallbackUrl String False The URL the user will be redirected to after authorizing your application. This value must match the Redirect URL you have specified in the BullhornCRM app settings. Only needed when the Authmode parameter is Web.
Verifier String False The verifier returned from BullhornCRM after the user has authorized your app to have access to their data. This value will be returned as a parameter to the callback URL.
State String False Indicates any state which may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the BullhornCRM authorization server and back. Uses include redirecting the user to the correct resource in your site, nonces, and cross-site-request-forgery mitigations.
Result Set Columns
Name Type Description
OAuthAccessToken String The access token used for communication with BullhornCRM.
OAuthRefreshToken String The OAuth refresh token. This is the same as the access token in the case of BullhornCRM.
ExpiresIn String The remaining lifetime on the access token. A -1 denotes that it will not expire.
RestUrl String The rest URL used to communicate with the REST API. You can specify this value in the connection string after retrieving it from this stored procedure.

GetOAuthAuthorizationURL

Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL.

Input
Name Type Required Description
CallbackUrl String False The URL the user will be redirected to after authorizing your application. This value must match the Redirect URL in the BullhornCRM app settings.
State String False Indicates any state which may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the BullhornCRM authorization server and back. Uses include redirecting the user to the correct resource in your site, nonces, and cross-site-request-forgery mitigations.
Result Set Columns
Name Type Description
URL String The authorization URL, entered into a Web browser to obtain the verifier token and authorize your app.

RefreshOAuthAccessToken

Use this procedure to refresh the access token.

Input
Name Type Required Description
OAuthRefreshToken String True Set this to the refresh token you got during the authentication flow.
Result Set Columns
Name Type Description
OAuthAccessToken String The authentication token returned from BullhornCRM. This can be used in subsequent calls to other operations for this particular service.
OAuthRefreshToken String The OAuth refresh token. This is the same as the access token in the case of BullhornCRM.
ExpiresIn String The remaining lifetime on the access token.
RestUrl String The rest URL used to communicate with the REST API. You can specify this value in the connection string after retrieving it from this stored procedure.

UploadFile

Upload a file to a specified entity.

Input
Name Type Required Accepts Input Streams Description
EntityType String True False The type of the entity to get the file from. This must be one of: Candidate, ClientContact, ClientCorporation, JobOrder, Opportunity, Placement. The allowed values are Candidate, ClientContact, ClientCorporation, JobOrder, Opportunity, Placement.
EntityId String True False The identifier of the entity. You can query the respective table to list all entities.
FileLocation String False False Full path of the file you want to attach.
ExternalId String True False External identifier for the file.
ContentType String False False Type/subtype of the file content.
Description String False False Comment that describes the file.
Type String False False Type of file that is attached. For example, resume, cover etc...
Content String False True The content as InputStream to be uploaded when FileLocation is not specified.
FileName String False False FileName is required when Content is specified.
Result Set Columns
Name Type Description
Success String Indicates whether or not the operation was successful.
FileId String The identifier of the attached file.

System Tables

You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.

Schema Tables

The following tables return database metadata for Bullhorn CRM:

Data Source Tables

The following tables return information about how to connect to and query the data source:

  • sys_connection_props: Returns information on the available connection properties.
  • sys_sqlinfo: Describes the SELECT queries that the connector can offload to the data source.

Query Information Tables

The following table returns query statistics for data modification queries:

  • sys_identity: Returns information about batch operations or single updates.

sys_catalogs

Lists the available databases.

The following query retrieves all databases determined by the connection string:

SELECT * FROM sys_catalogs
Columns
Name Type Description
CatalogName String The database name.

sys_schemas

Lists the available schemas.

The following query retrieves all available schemas:

SELECT * FROM sys_schemas
Columns
Name Type Description
CatalogName String The database name.
SchemaName String The schema name.

sys_tables

Lists the available tables.

The following query retrieves the available tables and views:

SELECT * FROM sys_tables
Columns
Name Type Description
CatalogName String The database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view.
TableType String The table type (table or view).
Description String A description of the table or view.
IsUpdateable Boolean Whether the table can be updated.

sys_tablecolumns

Describes the columns of the available tables and views.

The following query returns the columns and data types for the Candidate table:

SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName='Candidate'
Columns
Name Type Description
CatalogName String The name of the database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view containing the column.
ColumnName String The column name.
DataTypeName String The data type name.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The storage size of the column.
DisplaySize Int32 The designated column's normal maximum width in characters.
NumericPrecision Int32 The maximum number of digits in numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The column scale or number of digits to the right of the decimal point.
IsNullable Boolean Whether the column can contain null.
Description String A brief description of the column.
Ordinal Int32 The sequence number of the column.
IsAutoIncrement String Whether the column value is assigned in fixed increments.
IsGeneratedColumn String Whether the column is generated.
IsHidden Boolean Whether the column is hidden.
IsArray Boolean Whether the column is an array.
IsReadOnly Boolean Whether the column is read-only.
IsKey Boolean Indicates whether a field returned from sys_tablecolumns is the primary key of the table.

sys_procedures

Lists the available stored procedures.

The following query retrieves the available stored procedures:

SELECT * FROM sys_procedures
Columns
Name Type Description
CatalogName String The database containing the stored procedure.
SchemaName String The schema containing the stored procedure.
ProcedureName String The name of the stored procedure.
Description String A description of the stored procedure.
ProcedureType String The type of the procedure, such as PROCEDURE or FUNCTION.

sys_procedureparameters

Describes stored procedure parameters.

The following query returns information about all of the input parameters for the DownloadFile stored procedure:

SELECT * FROM sys_procedureparameters WHERE ProcedureName='DownloadFile' AND Direction=1 OR Direction=2
Columns
Name Type Description
CatalogName String The name of the database containing the stored procedure.
SchemaName String The name of the schema containing the stored procedure.
ProcedureName String The name of the stored procedure containing the parameter.
ColumnName String The name of the stored procedure parameter.
Direction Int32 An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters.
DataTypeName String The name of the data type.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The number of characters allowed for character data. The number of digits allowed for numeric data.
NumericPrecision Int32 The maximum precision for numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The number of digits to the right of the decimal point in numeric data.
IsNullable Boolean Whether the parameter can contain null.
IsRequired Boolean Whether the parameter is required for execution of the procedure.
IsArray Boolean Whether the parameter is an array.
Description String The description of the parameter.
Ordinal Int32 The index of the parameter.

sys_keycolumns

Describes the primary and foreign keys.

The following query retrieves the primary key for the Candidate table:

SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='Candidate'
Columns
Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
IsKey Boolean Whether the column is a primary key in the table referenced in the TableName field.
IsForeignKey Boolean Whether the column is a foreign key referenced in the TableName field.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.

sys_foreignkeys

Describes the foreign keys.

The following query retrieves all foreign keys which refer to other tables:

SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
Columns
Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.
ForeignKeyType String Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key.

sys_primarykeys

Describes the primary keys.

The following query retrieves the primary keys from all tables and views:

SELECT * FROM sys_primarykeys
Columns
Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
KeySeq String The sequence number of the primary key.
KeyName String The name of the primary key.

sys_indexes

Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.

The following query retrieves all indexes that are not primary keys:

SELECT * FROM sys_indexes WHERE IsPrimary='false'
Columns
Name Type Description
CatalogName String The name of the database containing the index.
SchemaName String The name of the schema containing the index.
TableName String The name of the table containing the index.
IndexName String The index name.
ColumnName String The name of the column associated with the index.
IsUnique Boolean True if the index is unique. False otherwise.
IsPrimary Boolean True if the index is a primary key. False otherwise.
Type Int16 An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3).
SortOrder String The sort order: A for ascending or D for descending.
OrdinalPosition Int16 The sequence number of the column in the index.

sys_connection_props

Returns information on the available connection properties and those set in the connection string.

When querying this table, the config connection string should be used:

jdbc:cdata:bullhorncrm:config:

This connection string enables you to query this table without a valid connection.

The following query retrieves all connection properties that have been set in the connection string or set through a default value:

SELECT * FROM sys_connection_props WHERE Value <> ''
Columns
Name Type Description
Name String The name of the connection property.
ShortDescription String A brief description.
Type String The data type of the connection property.
Default String The default value if one is not explicitly set.
Values String A comma-separated list of possible values. A validation error is thrown if another value is specified.
Value String The value you set or a preconfigured default.
Required Boolean Whether the property is required to connect.
Category String The category of the connection property.
IsSessionProperty String Whether the property is a session property, used to save information about the current connection.
Sensitivity String The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms.
PropertyName String A camel-cased truncated form of the connection property name.
Ordinal Int32 The index of the parameter.
CatOrdinal Int32 The index of the parameter category.
Hierarchy String Shows dependent properties associated that need to be set alongside this one.
Visible Boolean Informs whether the property is visible in the connection UI.
ETC String Various miscellaneous information about the property.

sys_sqlinfo

Describes the SELECT query processing that the connector can offload to the data source.

Discovering the Data Source's SELECT Capabilities

Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.

Name Description Possible Values
AGGREGATE_FUNCTIONS Supported aggregation functions. AVG, COUNT, MAX, MIN, SUM, DISTINCT
COUNT Whether COUNT function is supported. YES, NO
IDENTIFIER_QUOTE_OPEN_CHAR The opening character used to escape an identifier. [
IDENTIFIER_QUOTE_CLOSE_CHAR The closing character used to escape an identifier. ]
SUPPORTED_OPERATORS A list of supported SQL operators. =, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR
GROUP_BY Whether GROUP BY is supported, and, if so, the degree of support. NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE
STRING_FUNCTIONS Supported string functions. LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE
NUMERIC_FUNCTIONS Supported numeric functions. ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE
TIMEDATE_FUNCTIONS Supported date/time functions. NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT
REPLICATION_SKIP_TABLES Indicates tables skipped during replication.
REPLICATION_TIMECHECK_COLUMNS A string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication.
IDENTIFIER_PATTERN String value indicating what string is valid for an identifier.
SUPPORT_TRANSACTION Indicates if the provider supports transactions such as commit and rollback. YES, NO
DIALECT Indicates the SQL dialect to use.
KEY_PROPERTIES Indicates the properties which identify the uniform database.
SUPPORTS_MULTIPLE_SCHEMAS Indicates if multiple schemas may exist for the provider. YES, NO
SUPPORTS_MULTIPLE_CATALOGS Indicates if multiple catalogs may exist for the provider. YES, NO
DATASYNCVERSION The Data Sync version needed to access this driver. Standard, Starter, Professional, Enterprise
DATASYNCCATEGORY The Data Sync category of this driver. Source, Destination, Cloud Destination
SUPPORTSENHANCEDSQL Whether enhanced SQL functionality beyond what is offered by the API is supported. TRUE, FALSE
SUPPORTS_BATCH_OPERATIONS Whether batch operations are supported. YES, NO
SQL_CAP All supported SQL capabilities for this driver. SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX
PREFERRED_CACHE_OPTIONS A string value specifies the preferred cacheOptions.
ENABLE_EF_ADVANCED_QUERY Indicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side. YES, NO
PSEUDO_COLUMNS A string array indicating the available pseudo columns.
MERGE_ALWAYS If the value is true, The Merge Mode is forcibly executed in Data Sync. TRUE, FALSE
REPLICATION_MIN_DATE_QUERY A select query to return the replicate start datetime.
REPLICATION_MIN_FUNCTION Allows a provider to specify the formula name to use for executing a server side min.
REPLICATION_START_DATE Allows a provider to specify a replicate startdate.
REPLICATION_MAX_DATE_QUERY A select query to return the replicate end datetime.
REPLICATION_MAX_FUNCTION Allows a provider to specify the formula name to use for executing a server side max.
IGNORE_INTERVALS_ON_INITIAL_REPLICATE A list of tables which will skip dividing the replicate into chunks on the initial replicate.
CHECKCACHE_USE_PARENTID Indicates whether the CheckCache statement should be done against the parent key column. TRUE, FALSE
CREATE_SCHEMA_PROCEDURES Indicates stored procedures that can be used for generating schema files.

The following query retrieves the operators that can be used in the WHERE clause:

SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'

Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.

Columns
Name Type Description
NAME String A component of SQL syntax, or a capability that can be processed on the server.
VALUE String Detail on the supported SQL or SQL syntax.

sys_identity

Returns information about attempted modifications.

The following query retrieves the Ids of the modified rows in a batch operation:

SELECT * FROM sys_identity
Columns
Name Type Description
Id String The database-generated ID returned from a data modification operation.
Batch String An identifier for the batch. 1 for a single operation.
Operation String The result of the operation in the batch: INSERTED, UPDATED, or DELETED.
Message String SUCCESS or an error message if the update in the batch failed.

Advanced Configurations Properties

The advanced configurations properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure. Click the links for further details.

Authentication

Property Description
DataCenterCode The data center code where your account's data is hosted, for example, CLS2, CLS5 etc...
RestURL The base URL of the Bullhorn CRM REST API.

OAuth

Property Description
InitiateOAuth Set this property to initiate the process to obtain or refresh the OAuth access token when you connect.
OAuthClientId The client ID assigned when you register your application with an OAuth authorization server.
OAuthClientSecret The client secret assigned when you register your application with an OAuth authorization server.
OAuthSettingsLocation The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH . Alternatively, you can hold this location in memory by specifying a value starting with 'memory://'.
CallbackURL The OAuth callback URL to return to when authenticating. This value must match the callback URL you specify in your app settings.
OAuthVerifier The verifier code returned from the OAuth authorization URL.
OAuthRefreshToken The OAuth refresh token for the corresponding OAuth access token.
OAuthExpiresIn The lifetime in seconds of the OAuth AccessToken.
OAuthTokenTimestamp The Unix epoch timestamp in milliseconds when the current Access Token was created.

SSL

Property Description
SSLServerCert The certificate to be accepted from the server when connecting using TLS/SSL.

Schema

Property Description
Location A path to the directory that contains the schema files defining tables, views, and stored procedures.
BrowsableSchemas This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC.
Tables This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC.
Views Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC.

Miscellaneous

Property Description
ExpandAssociations Specify whether to expose or not the Associations Tables.
GenerateSchemaFiles Indicates the user preference as to when schemas should be generated and saved.
IncludeCustomFields A boolean indicating if you would like to include custom fields in the column listing.
IncludeCustomTables Whether to include custom tables or not. When off, performance will be higher, but the custom tables cannot be retrieved.
IncludeDeleted Boolean indicating if you would like to include deleted records.
ListLayouts A list of tables you want to list layouts for. Put '*' or 'All' if you want layouts of all tables.
MaxRows Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
MaxThreads Specifies the number of concurrent requests.
Other These hidden properties are used only in specific use cases.
Pagesize The maximum number of results to return per page from Bullhorn CRM.
PseudoColumns This property indicates whether or not to include pseudo columns as columns to the table.
Timeout The value in seconds until the timeout error is thrown, canceling the operation.
UseDefaultOrderBy Indicates if a default order by should be applied if none is specified in the query.
UseDisplayNames Boolean determining whether or not to use the labels for column names. Defaults to true.
UserDefinedViews A filepath pointing to the JSON configuration file containing your custom views.
VerifyEntitlements Verify read entitlements for all entity types for the current user before exposing the corresponding tables and associated columns.

Authentication

This section provides a complete list of authentication properties you can configure.

Property Description
DataCenterCode The data center code where your account's data is hosted, for example, CLS2, CLS5 etc...
RestURL The base URL of the Bullhorn CRM REST API.

DataCenterCode

The data center code where your account's data is hosted, for example, CLS2, CLS5 etc...

Data Type

string

Default Value

""

Remarks

The data center code where your account's data is hosted, for example, CLS2, CLS5 etc... Find the list of the data centers here.

RestURL

The base URL of the Bullhorn CRM REST API.

Data Type

string

Default Value

""

Remarks

This is used as the base URL of the Bullhorn CRM REST API. This is retrieved automatically during the OAuth flow in WEB mode. If you execute the OAuth flow manually in APP mode, you must specify this in the connection string, after getting it as an output of the GetOAuthAccessToken. Otherwise if InitiateOAuth is set to GETANDREFRESH, this value will be retrieved and saved for you under the hood.

OAuth

This section provides a complete list of OAuth properties you can configure.

Property Description
InitiateOAuth Set this property to initiate the process to obtain or refresh the OAuth access token when you connect.
OAuthClientId The client ID assigned when you register your application with an OAuth authorization server.
OAuthClientSecret The client secret assigned when you register your application with an OAuth authorization server.
OAuthSettingsLocation The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH . Alternatively, you can hold this location in memory by specifying a value starting with 'memory://'.
CallbackURL The OAuth callback URL to return to when authenticating. This value must match the callback URL you specify in your app settings.
OAuthVerifier The verifier code returned from the OAuth authorization URL.
OAuthRefreshToken The OAuth refresh token for the corresponding OAuth access token.
OAuthExpiresIn The lifetime in seconds of the OAuth AccessToken.
OAuthTokenTimestamp The Unix epoch timestamp in milliseconds when the current Access Token was created.

InitiateOAuth

Set this property to initiate the process to obtain or refresh the OAuth access token when you connect.

Possible Values

OFF, GETANDREFRESH, REFRESH

Data Type

string

Default Value

OFF

Remarks

The following options are available:

  1. OFF: Indicates that the OAuth flow will be handled entirely by the user. An OAuthAccessToken will be required to authenticate.
  2. GETANDREFRESH: Indicates that the entire OAuth Flow will be handled by the connector. If no token currently exists, it will be obtained by prompting the user via the browser. If a token exists, it will be refreshed when applicable.
  3. REFRESH: Indicates that the connector will only handle refreshing the OAuthAccessToken. The user will never be prompted by the connector to authenticate via the browser. The user must handle obtaining the OAuthAccessToken and OAuthRefreshToken initially.

OAuthClientId

The client ID assigned when you register your application with an OAuth authorization server.

Data Type

string

Default Value

""

Remarks

As part of registering an OAuth application, you will receive the OAuthClientId value, sometimes also called a consumer key, and a client secret, the OAuthClientSecret.

OAuthClientSecret

The client secret assigned when you register your application with an OAuth authorization server.

Data Type

string

Default Value

""

Remarks

As part of registering an OAuth application, you will receive the OAuthClientId, also called a consumer key. You will also receive a client secret, also called a consumer secret. Set the client secret in the OAuthClientSecret property.

OAuthSettingsLocation

The location of the settings file where OAuth values are saved when InitiateOAuth is set to GETANDREFRESH or REFRESH. Alternatively, you can hold this location in memory by specifying a value starting with 'memory://'.

Data Type

string

Default Value

%APPDATA%\CData\Acumatica Data Provider\OAuthSettings.txt

Remarks

When InitiateOAuth is set to GETANDREFRESH or REFRESH, the driver saves OAuth values to avoid requiring the user to manually enter OAuth connection properties and to allow the credentials to be shared across connections or processes.

Instead of specifying a file path, you can use memory storage. Memory locations are specified by using a value starting with 'memory://' followed by a unique identifier for that set of credentials (for example, memory://user1). The identifier can be anything you choose but should be unique to the user. Unlike file-based storage, where credentials persist across connections, memory storage loads the credentials into static memory, and the credentials are shared between connections using the same identifier for the life of the process. To persist credentials outside the current process, you must manually store the credentials prior to closing the connection. This enables you to set them in the connection when the process is started again. You can retrieve OAuth property values with a query to the sys_connection_props system table. If there are multiple connections using the same credentials, the properties are read from the previously closed connection.

The default location is "%APPDATA%\CData\Acumatica Data Provider\OAuthSettings.txt" with %APPDATA% set to the user's configuration directory. The default values are

  • Windows: "register://%DSN"
  • Unix: "%AppData%..."

where DSN is the name of the current DSN used in the open connection.

The following table lists the value of %APPDATA% by OS:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

CallbackURL

The OAuth callback URL to return to when authenticating. This value must match the callback URL you specify in your app settings.

Data Type

string

Default Value

""

Remarks

During the authentication process, the OAuth authorization server redirects the user to this URL. This value must match the callback URL you specify in your app settings.

OAuthVerifier

The verifier code returned from the OAuth authorization URL.

Data Type

string

Default Value

""

Remarks

The verifier code returned from the OAuth authorization URL. This can be used on systems where a browser cannot be launched such as headless systems.

Authentication on Headless Machines

See to obtain the OAuthVerifier value.

Set OAuthSettingsLocation along with OAuthVerifier. When you connect, the connector exchanges the OAuthVerifier for the OAuth authentication tokens and saves them, encrypted, to the specified location. Set InitiateOAuth to GETANDREFRESH to automate the exchange.

Once the OAuth settings file has been generated, you can remove OAuthVerifier from the connection properties and connect with OAuthSettingsLocation set.

To automatically refresh the OAuth token values, set OAuthSettingsLocation and additionally set InitiateOAuth to REFRESH.

OAuthRefreshToken

The OAuth refresh token for the corresponding OAuth access token.

Data Type

string

Default Value

""

Remarks

The OAuthRefreshToken property is used to refresh the OAuthAccessToken when using OAuth authentication.

OAuthExpiresIn

The lifetime in seconds of the OAuth AccessToken.

Data Type

string

Default Value

""

Remarks

Pair with OAuthTokenTimestamp to determine when the AccessToken will expire.

OAuthTokenTimestamp

The Unix epoch timestamp in milliseconds when the current Access Token was created.

Data Type

string

Default Value

""

Remarks

Pair with OAuthExpiresIn to determine when the AccessToken will expire.

SSL

This section provides a complete list of SSL properties you can configure.

Property Description
SSLServerCert The certificate to be accepted from the server when connecting using TLS/SSL.

SSLServerCert

The certificate to be accepted from the server when connecting using TLS/SSL.

Data Type

string

Default Value

""

Remarks

If using a TLS/SSL connection, this property can be used to specify the TLS/SSL certificate to be accepted from the server. Any other certificate that is not trusted by the machine is rejected.

This property can take the following forms:

Description Example
A full PEM Certificate (example shortened for brevity) -----BEGIN CERTIFICATE----- MIIChTCCAe4CAQAwDQYJKoZIhv......Qw== -----END CERTIFICATE-----
A path to a local file containing the certificate C:\\cert.cer
The public key (example shortened for brevity) -----BEGIN RSA PUBLIC KEY----- MIGfMA0GCSq......AQAB -----END RSA PUBLIC KEY-----
The MD5 Thumbprint (hex values can also be either space or colon separated) ecadbdda5a1529c58a1e9e09828d70e4
The SHA1 Thumbprint (hex values can also be either space or colon separated) 34a929226ae0819f2ec14b4a3d904f801cbb150d

If not specified, any certificate trusted by the machine is accepted.

Certificates are validated as trusted by the machine based on the System's trust store. The trust store used is the 'javax.net.ssl.trustStore' value specified for the system. If no value is specified for this property, Java's default trust store is used (for example, JAVA_HOME\lib\security\cacerts).

Use '*' to signify to accept all certificates. Note that this is not recommended due to security concerns.

Schema

This section provides a complete list of schema properties you can configure.

Property Description
Location A path to the directory that contains the schema files defining tables, views, and stored procedures.
BrowsableSchemas This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA, SchemaB, SchemaC.
Tables This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA, TableB, TableC.
Views Restricts the views reported to a subset of the available tables. For example, Views=ViewA, ViewB, ViewC.

Location

A path to the directory that contains the schema files defining tables, views, and stored procedures.

Data Type

string

Default Value

%APPDATA%\BullhornCRM Data Provider\Schema

Remarks

The path to a directory which contains the schema files for the connector (.rsd files for tables and views, .rsb files for stored procedures). The folder location can be a relative path from the location of the executable. The Location property is only needed if you want to customize definitions (for example, change a column name, ignore a column, and so on) or extend the data model with new tables, views, or stored procedures.

If left unspecified, the default location is "%APPDATA%\BullhornCRM Data Provider\Schema" with %APPDATA% being set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Mac ~/Library/Application Support
Linux ~/.config

BrowsableSchemas

This property restricts the schemas reported to a subset of the available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC.

Data Type

string

Default Value

""

Remarks

Listing the schemas from databases can be expensive. Providing a list of schemas in the connection string improves the performance.

Tables

This property restricts the tables reported to a subset of the available tables. For example, Tables=TableA,TableB,TableC.

Data Type

string

Default Value

""

Remarks

Listing the tables from some databases can be expensive. Providing a list of tables in the connection string improves the performance of the connector.

This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.

Specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.

Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.

Views

Restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC.

Data Type

string

Default Value

""

Remarks

Listing the views from some databases can be expensive. Providing a list of views in the connection string improves the performance of the connector.

This property can also be used as an alternative to automatically listing views if you already know which ones you want to work with and there would otherwise be too many to work with.

Specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.

Note that when connecting to a data source with multiple schemas or catalogs, you will need to provide the fully qualified name of the table in this property, as in the last example here, to avoid ambiguity between tables that exist in multiple catalogs or schemas.

Miscellaneous

This section provides a complete list of miscellaneous properties you can configure.

Property Description
ExpandAssociations Specify whether to expose or not the Associations Tables.
GenerateSchemaFiles Indicates the user preference as to when schemas should be generated and saved.
IncludeCustomFields A boolean indicating if you would like to include custom fields in the column listing.
IncludeCustomTables Whether to include custom tables or not. When off, performance will be higher, but the custom tables cannot be retrieved.
IncludeDeleted Boolean indicating if you would like to include deleted records.
ListLayouts A list of tables you want to list layouts for. Put '*' or 'All' if you want layouts of all tables.
MaxRows Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.
MaxThreads Specifies the number of concurrent requests.
Other These hidden properties are used only in specific use cases.
Pagesize The maximum number of results to return per page from Bullhorn CRM.
PseudoColumns This property indicates whether or not to include pseudo columns as columns to the table.
Timeout The value in seconds until the timeout error is thrown, canceling the operation.
UseDefaultOrderBy Indicates if a default order by should be applied if none is specified in the query.
UseDisplayNames Boolean determining whether or not to use the labels for column names. Defaults to true.
UserDefinedViews A filepath pointing to the JSON configuration file containing your custom views.
VerifyEntitlements Verify read entitlements for all entity types for the current user before exposing the corresponding tables and associated columns.

ExpandAssociations

Specify whether to expose or not the Associations Tables.

Data Type

bool

Default Value

false

Remarks
  • If False, the connector does not expose the Associations Tables.
  • If True, the connector exposes one Associations Table for every 'To-Many' associations field on a Bullhorn CRM entity (ex. CandidateToPrimarySkillsAssociations, JobOrderTocategoriesAssociations, WorkersCompensationToRatesAssociations, etc.). Each of these tables will return the ID pairs of the associated records between the two entities.

GenerateSchemaFiles

Indicates the user preference as to when schemas should be generated and saved.

Possible Values

Never, OnUse, OnStart, OnCreate

Data Type

string

Default Value

Never

Remarks

This property outputs schemas to .rsd files in the path specified by Location.

Available settings are the following:

  • Never: A schema file will never be generated.
  • OnUse: A schema file will be generated the first time a table is referenced, provided the schema file for the table does not already exist.
  • OnStart: A schema file will be generated at connection time for any tables that do not currently have a schema file.
  • OnCreate: A schema file will be generated by when running a CREATE TABLE SQL query.

Note that if you want to regenerate a file, you will first need to delete it.

Generate Schemas with SQL

When you set GenerateSchemaFiles to OnUse, the connector generates schemas as you execute SELECT queries. Schemas are generated for each table referenced in the query.

When you set GenerateSchemaFiles to OnCreate, schemas are only generated when a CREATE TABLE query is executed.

Generate Schemas on Connection

Another way to use this property is to obtain schemas for every table in your database when you connect. To do so, set GenerateSchemaFiles to OnStart and connect.

IncludeCustomFields

A boolean indicating if you would like to include custom fields in the column listing.

Data Type

bool

Default Value

true

Remarks

Setting this to true will cause custom fields to be included in the column listing, but may cause poor performance when listing metadata.

IncludeCustomTables

Whether to include custom tables or not. When off, performance will be higher, but the custom tables cannot be retrieved.

Data Type

bool

Default Value

false

Remarks

If set to TRUE, the custom tables will be retrieved, at the cost of some performance.

IncludeDeleted

Boolean indicating if you would like to include deleted records.

Data Type

bool

Default Value

false

Remarks

Affects only tables that support IsDeleted.

ListLayouts

A list of tables you want to list layouts for. Put '*' or 'All' if you want layouts of all tables.

Data Type

string

Default Value

""

Remarks

A list of tables you want to list layouts for. For example ListLayouts=Candidate,JobOrder; will show the layouts of the Candidate and JobOrder entities as views. The naming of the layout views will be '{EntityName}{LayoutName}Layout'. For example, CandidateFasterFindLayout.

MaxRows

Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.

Data Type

int

Default Value

-1

Remarks

Limits the number of rows returned when no aggregation or GROUP BY is used in the query. This takes precedence over LIMIT clauses.

MaxThreads

Specifies the number of concurrent requests.

Data Type

string

Default Value

5

Remarks

This property allows you to issue multiple requests simultaneously, thereby improving performance.

Set this to the maxinum number of concurrent threads that can be opened.

Other

These hidden properties are used only in specific use cases.

Data Type

string

Default Value

""

Remarks

The properties listed below are available for specific use cases. Normal driver use cases and functionality should not require these properties.

Specify multiple properties in a semicolon-separated list.

Integration and Formatting
Property Description
DefaultColumnSize Sets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000.
ConvertDateTimeToGMT Determines whether to convert date-time values to GMT, instead of the local time of the machine.
RecordToFile=filename Records the underlying socket data transfer to the specified file.

Pagesize

The maximum number of results to return per page from Bullhorn CRM.

Data Type

int

Default Value

500

Remarks

The Pagesize property affects the maximum number of results to return per page from Bullhorn CRM. Setting a higher value may result in better performance at the cost of additional memory allocated per page consumed.

PseudoColumns

This property indicates whether or not to include pseudo columns as columns to the table.

Data Type

string

Default Value

""

Remarks

This setting is particularly helpful in Entity Framework, which does not allow you to set a value for a pseudo column unless it is a table column. The value of this connection setting is of the format "Table1=Column1, Table1=Column2, Table2=Column3". You can use the "*" character to include all tables and all columns; for example, "*=*".

Timeout

The value in seconds until the timeout error is thrown, canceling the operation.

Data Type

int

Default Value

60

Remarks

If Timeout = 0, operations do not time out. The operations run until they complete successfully or until they encounter an error condition.

If Timeout expires and the operation is not yet complete, the connector throws an exception.

UseDefaultOrderBy

Indicates if a default order by should be applied if none is specified in the query.

Data Type

bool

Default Value

true

Remarks

By default, the Bullhorn CRM connector applies an order by when none is specified. This ensures that duplicate records do not get output when returning data. However, this will have a significant impact on performance for very large tables. If your use case can handle the possibility of duplicate primary keys, it is recommended to turn this off if you would like to have better performance.

UseDisplayNames

Boolean determining whether or not to use the labels for column names. Defaults to true.

Data Type

bool

Default Value

true

Remarks

Boolean determining whether or not to use the labels for column names. Defaults to true.

If set to true, the labels of the fields, will serve as column names. Otherwise, the name of the column will be the field name.

UserDefinedViews

A filepath pointing to the JSON configuration file containing your custom views.

Data Type

string

Default Value

""

Remarks

User Defined Views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This User Defined View configuration file is formatted as follows:

  • Each root element defines the name of a view.
  • Each root element contains a child element, called query, which contains the custom SQL query for the view.

For example:

{
    "MyView": {
        "query": "SELECT * FROM Candidate WHERE MyColumn = 'value'"
    },
    "MyView2": {
        "query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
    }
}

Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:

"UserDefinedViews", C:\Users\yourusername\Desktop\tmp\UserDefinedViews.json

Note that the specified path is not embedded in quotation marks.

VerifyEntitlements

Verify read entitlements for all entity types for the current user before exposing the corresponding tables and associated columns.

Data Type

bool

Default Value

false

Remarks

Verify read entitlements for all entity types for the current user before exposing the corresponding tables and associated columns. If this property is set to 'true', any entity type missing any of the following entitlements will not be exposed as a table, 'READ', 'READ_DEPARTMENT', 'READ_CORPORATE' and 'READ_PRIVATE'.