query_entities
Filter and retrieve Bullhorn CRM entities (e.g., JobOrder, Candidate) by specifying WHERE clauses, field selection, limit, and sort order.
Instructions
Query Bullhorn entities using SQL-like WHERE syntax.
Args: entity: Entity type (JobOrder, Candidate, etc.) where: WHERE clause (e.g., "salary > 100000 AND status='Active'") limit: Maximum number of results (1-500, default 20) fields: Comma-separated fields to return order_by: Sort order (e.g., "-dateAdded" for newest first)
Returns: JSON array of matching entities
Examples: - query_entities(entity="JobOrder", where="salary > 100000") - query_entities(entity="Candidate", where="status='Active'", order_by="-dateAdded")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entity | Yes | ||
| where | Yes | ||
| limit | No | ||
| fields | No | ||
| order_by | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |