create_people_relationship
Add a new relationship (e.g., spouse, partner) to a person's profile in Follow Up Boss, including contact details like email, phone, and address.
Instructions
Create a new relationship for a person. (POST /peopleRelationships)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | The type of relationship, e.g. `Spouse`, `Brother`, `Partner` , etc. | |
| emails | No | A list of email addresses associated with the relationship. (Specify type and value, `isPrimary` is not expected. The first email in the list will be the primary email address for the relationship.) | |
| phones | No | A list of phone numbers associated with the relationship. (Specify type and value, `isPrimary` is not expected. The first phone in the list will be the primary phone number for the relationship.) | |
| lastName | No | The last/family name of the relationship. | |
| personId | No | Person ID this relationship is associated with. | |
| addresses | No | A list of addresses associated with the relationship. (This is the address where this person can be contacted, it is not the address of a property this person may be interested in selling or buying). | |
| 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. | |
| firstName | No | The first/given name of the relationship. | |
| 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. |