list_events
Search and retrieve all Follow Up Boss events matching filters like type, person, or property, with automatic pagination to fetch every result.
Instructions
Search for events. (GET /events) Defaults to limit=100 (FUB's max per page) rather than its own default of 10 — bulk requests are the common case here. If the response's _metadata shows more results remain, keep paginating: use offset for offset-based endpoints, or the _metadata.next cursor value (as the next argument) for cursor-based endpoints like notes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| next | No | To get the next page of results, set this to the value returned in _metadata.next, or use the URL from _metadata.nextLink directly. | |
| type | No | Comma separated list of one or more of the following: "Registration", "Inquiry", "Seller Inquiry", "Property Inquiry", "General Inquiry", "Viewed Property", "Saved Property", "Visited Website", "Incoming Call", "Unsubscribed", "Property Search", "Saved Property Search", "Visited Open House" or "Viewed Page". | |
| limit | No | Number of results to return. (Max 100.) | |
| offset | No | Specifies the number of rows to skip, before starting to return results. (For more efficient paging, please use the "next" parameter instead.) | |
| personId | No | Find all events related to a person. | |
| extraQuery | No | Extra raw query parameters not explicitly listed above — e.g. FUB custom field filters like custom.ClosingDate on /people or /deals. Keys and values are sent as-is. | |
| hasProperty | No | Filters based on whether a property is associated with an event or not. | |
| propertyAddress | No | Searches property addresses for a given value, including partial matches. |