FullFunnel Contacts

Gerenciar contatos na FullFunnel (HighLevel)

Actions5

Overview

This node integrates with the FullFunnel (HighLevel) service to manage contacts. It allows users to perform various operations on contacts such as creating a new contact, retrieving a contact by ID, updating contact details, deleting a contact, and fetching multiple contacts.

A common use case is automating contact management workflows where you need to sync or manipulate contact data between FullFunnel and other systems. For example, you could automatically add new leads collected from a form into FullFunnel, update contact information based on external events, or retrieve contact details for further processing.

Specifically, the Get Contact operation fetches detailed information about a single contact using its unique Contact ID.

Properties

Name Meaning
Contact ID The unique identifier of the contact to retrieve, update, or delete. Required for Get, Update, and Delete operations.

Output

The output JSON structure for the Get Contact operation contains the contact's details as returned by the FullFunnel API under the json field. This includes all available properties of the contact such as email, first name, last name, phone, and any other metadata provided by the service.

Example output JSON snippet:

{
  "id": "contact-id",
  "email": "example@email.com",
  "firstName": "John",
  "lastName": "Doe",
  "phone": "+1234567890",
  ...
}

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for FullFunnel (HighLevel) to authenticate requests.
  • The node makes HTTP requests to the FullFunnel API endpoint at https://services.leadconnectorhq.com.
  • The user must configure the API key and location ID in the node credentials before use.

Troubleshooting

  • Common issues:

    • Invalid or missing Contact ID will cause the API to return an error.
    • Incorrect or expired API key will result in authentication failures.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • Errors from the FullFunnel API are caught and either thrown or returned as error objects if "Continue On Fail" is enabled.
    • Typical errors include "Contact not found" when an invalid Contact ID is used.
    • Authentication errors indicate issues with the API key setup.
  • Resolutions:

    • Verify that the Contact ID is correct and exists in FullFunnel.
    • Ensure the API key credential is valid and has necessary permissions.
    • Check network access and proxy settings if applicable.

Links and References

Discussion