list_notes
Retrieve notes from Follow Up Boss, optionally filtered by person ID, with cursor-based pagination for navigating large result sets.
Instructions
List notes, optionally filtered by person. This endpoint is NOT in FUB's published API docs (only GET /notes/{id} is documented there), but the plural GET /notes endpoint works today and supports filtering by personId — confirmed against the live API. Since it's undocumented, treat it as best-effort: if FUB changes this behavior, fall back to get_note by id. (GET /notes) Defaults to limit=100. This endpoint paginates via a cursor, not offset: pass the previous response's _metadata.next value as next to get the following page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| next | No | Cursor from a previous response's _metadata.next, to fetch the next page. | |
| limit | No | Number of results to return. Max 100. | |
| personId | No | Only return notes for this person ID. | |
| 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. |