list_calls
Search call records using filters like person, phone, and numbers, with pagination up to 100 results per page.
Instructions
Search for calls. (GET /calls) 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 |
|---|---|---|---|
| limit | No | Number of results to return. Max 100. | |
| phone | No | Filter calls based on the phone number of a specific person or lead. This will finds calls regardless of whether they were incoming or outgoing. | |
| offset | No | Specifies the number of rows to skip before starting to return results. | |
| personId | No | Filter calls by a person ID. | |
| toNumber | No | Filter calls based on the number that the call was to. | |
| 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. | |
| fromNumber | No | Filter calls based on the number that the call was from. |