qobrix_search_changes
Search tenant-wide audit logs to trace changes across CRM records, using filters for timestamp, user, or record ID to identify who changed what.
Instructions
Search tenant-wide audit log for a CRM resource (Qobrix LogAudit). Calls GET /api/v2/{resource}/changes. Use to find who changed what across all records. Search examples: timestamp >= DAYS_AGO(30), user_id == "", primary_key == "". Pair with qobrix_top_field_changers for leaderboards or qobrix_field_change_history for one record.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default 1). Used on the fast path (no boost). Ignored when boost is set (ranking returns a single top-N page). | |
| sort | No | Sort field(s). Example: '-timestamp'. | |
| limit | No | How many results to return (1-100, default 10). With boost: top-N after ranking. Without boost: page size. Raise when the user wants more options; keep low to avoid context overload. | |
| fields | No | LogAudit columns to return. Default all. Recommended for large scans: ['timestamp','user_id','primary_key','original','changed','type'] | |
| search | No | Qobrix search on LogAudit rows. Examples: 'timestamp >= DAYS_AGO(30)', 'user_id == "<uuid>"', 'primary_key == "<opportunity-uuid>"'. | |
| resource | Yes | CRM resource name. PascalCase (e.g. 'Opportunities', 'Properties', 'Contracts') or kebab slug (e.g. 'opportunities'). Maps to GET /api/v2/{resource}/changes. Common values: Opportunities, Properties, Contacts, Contracts, Offers, Tasks, Calls, Meetings. |