What problem does it solve?
This Skill streamlines the process of querying and managing Bullhorn CRM data, providing a structured and efficient way to access and manipulate recruiting data.
Core Features & Use Cases
- Bullhorn CRM Data Access: Offers comprehensive access to the Bullhorn CRM data model, including Candidates, ClientCorporations, JobOrders, JobSubmissions, and Placements.
- Recruiting Analytics: Enables in-depth analysis of recruiting metrics and processes through SQL-based queries.
- File Attachments: Supports file attachment procedures for handling documents related to job orders and candidates.
- Use Case: For instance, you can query for all candidates submitted to a specific job over the past month and extract relevant data such as status, date added, and job details.
Quick Start
To start querying Bullhorn CRM data, load the connect-ai-bullhorncrm skill and execute the following command: SELECT * FROM [YourConnection].[BullhornCRM].[Candidate] WHERE [DateAdded] >= DATEADD(day, -30, GETDATE()) ORDER BY [DateAdded] DESC LIMIT 50.