create_custom_field
Add custom fields to Follow Up Boss CRM for storing extra data on people or deals. Define label, type, and options such as dropdown choices or recurring dates.
Instructions
Create a custom field. (POST /customFields)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | The type of custom field. | |
| label | Yes | The user-friendly name of the custom field (e.g., "Anniversary"). | |
| choices | No | Array of options related to a custom field of type `dropdown`. | |
| extraBody | No | Extra raw JSON body fields not explicitly listed above — e.g. custom.* fields when creating/updating people or deals. Keys and values are sent as-is. | |
| 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. | |
| hideIfEmpty | No | When viewing a person, we will hide this field if it is empty. | |
| isRecurring | No | Whether a date field occurs every year (e.g. birthdays, anniversaries, etc.). (Note: This is only set and returned for `date` custom fields.) | |
| orderWeight | No | A weighted integer for the field to assign values for custom sorting. |