create_call
Log a phone call to a person in Follow Up Boss CRM by providing the phone number, call direction, outcome, duration, and optional note.
Instructions
Add a call. (POST /calls)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | The log message entered for this call. | |
| phone | Yes | The phone number this call was made to or from. | |
| userId | No | The ID of the user that made or received a call. (This can only be set by administrators, otherwise the currently logged in user's ID is used.) | |
| outcome | No | The outcome of the call, which can be one of `Interested`, `Not Interested`, `Left Message`, `No Answer`, `Busy` or `Bad Number`. | |
| duration | No | Length of the call in seconds. | |
| personId | Yes | The ID of a person associated with this call. | |
| toNumber | No | The phone number this call was made to. | |
| 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. | |
| fromNumber | No | The phone number this call was made from. | |
| isIncoming | Yes | Sets this as an incoming or outgoing call. | |
| recordingUrl | No | The URL for the call recording. |