list_webhooks
List webhooks from Follow Up Boss, filtering by event or status, and paginate to get up to 100 results per request.
Instructions
Get a list of webhooks. (GET /webhooks) 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 |
|---|---|---|---|
| sort | No | The sort order. Can be one of the following: `id`, `created`, `updated`, `status` or `event`. | created |
| event | No | Search for webhooks by event. (e.g., `peopleCreated` or `peopleUpdated`) | |
| limit | No | Number of results to return. Max 100. | |
| offset | No | Specifies the number of rows to skip before starting to return results. | |
| status | No | Search for webhooks by status. Status can be `Active` or `Disabled`. | |
| 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. |