FullFunnel Contacts

Gerenciar contatos na FullFunnel (HighLevel)

Actions5

Overview

This node integrates with the FullFunnel (HighLevel) service to manage contacts. It allows users to create, retrieve, update, delete, and list contacts within their FullFunnel account. The "Update Contact" operation specifically enables modifying existing contact details by specifying the contact's unique ID and the fields to update.

Practical scenarios include:

  • Keeping contact information up-to-date automatically when changes occur in other systems.
  • Correcting or enriching contact data such as email, phone number, or names.
  • Synchronizing contact details between FullFunnel and other CRMs or databases.

Example: You have a contact whose phone number changed. Using this node’s update operation, you provide the contact ID and new phone number to keep your FullFunnel contact records current.

Properties

Name Meaning
Contact ID The unique identifier of the contact to update. Required to specify which contact to modify.
Update Fields A collection of fields to update on the contact. Options include:
- Email: The contact's email address.
- Full Name: The full name of the contact.
- First Name: The contact's first name.
- Last Name: The contact's last name.
- Phone: The contact's phone number.

Output

The output is a JSON object representing the updated contact returned from the FullFunnel API after a successful update operation. It contains all the contact's properties including those updated.

Example output structure:

{
  "id": "string",
  "email": "string",
  "name": "string",
  "firstName": "string",
  "lastName": "string",
  "phone": "string",
  "locationId": "string",
  ...
}

No binary data is produced by this node.

Dependencies

  • Requires an API key credential for FullFunnel (HighLevel) authentication.
  • Needs the location ID associated with the FullFunnel account.
  • Makes HTTP requests to the FullFunnel API endpoint at https://services.leadconnectorhq.com.
  • The node expects the API version header "Version": "2021-07-28" in requests.

Troubleshooting

  • Common issues:

    • Invalid or missing Contact ID will cause the update to fail.
    • Providing no fields in "Update Fields" may result in no changes or an error.
    • Network or authentication errors if the API key or location ID are incorrect or expired.
  • Error messages:

    • Errors from the FullFunnel API will be thrown and can include messages about invalid IDs, unauthorized access, or malformed requests.
    • If "Continue On Fail" is enabled, errors will be returned as JSON objects with an error property instead of stopping execution.
  • Resolutions:

    • Verify that the Contact ID exists and is correct.
    • Ensure at least one field is provided to update.
    • Check API key validity and permissions.
    • Confirm network connectivity and API endpoint accessibility.

Links and References

Discussion