list_deal_custom_fields
Fetch all deal custom fields from your account, with sorting, filtering, and pagination to handle large volumes.
Instructions
List all deals custom fields available in your account. (GET /dealCustomFields) 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 | Sorts results based on the provided field name. Prepending the field with a minus sign (-) sorts the results in descending order. | id (desc) |
| label | No | Find custom field by label. | |
| limit | No | Number of results to return. Max 100. | |
| offset | No | Specifies the number of rows to skip, before starting to return results. | |
| 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. |