FullFunnel Contacts

Gerenciar contatos na FullFunnel (HighLevel)

Actions5

Overview

This node integrates with the FullFunnel (HighLevel) platform to manage contacts. Specifically, for the Contact - Create operation, it allows users to add new contacts into their FullFunnel account by providing essential contact details such as email, name, and phone number.

Typical use cases include:

  • Automatically adding leads captured from web forms or other sources into FullFunnel.
  • Syncing contact data from other systems into FullFunnel for marketing or sales automation.
  • Creating contacts programmatically during workflows that require customer data enrichment.

For example, a user might use this node to create a new contact when a form submission occurs on their website, ensuring the lead is immediately available in their CRM system.

Properties

Name Meaning
Email The email address of the contact. This is required and uniquely identifies the contact.
Full Name The full name of the contact.
First Name The first name of the contact.
Last Name The last name of the contact.
Phone The phone number of the contact.

Output

The node outputs JSON data representing the newly created contact as returned by the FullFunnel API. The output includes all contact fields stored in FullFunnel, such as email, name, phone, and any other metadata the API provides upon creation.

No binary data is output by this node.

Example output structure (simplified):

{
  "json": {
    "email": "name@email.com",
    "name": "Full Name",
    "firstName": "First",
    "lastName": "Last",
    "phone": "1234567890",
    "locationId": "location-id-value",
    "id": "contact-id"
  }
}

Dependencies

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

Troubleshooting

  • Common issues:

    • Missing or invalid API key: The node will fail to authenticate with the FullFunnel API.
    • Invalid or missing required fields (e.g., email): The API may reject the request.
    • Network connectivity problems can cause request failures.
  • Error messages:

    • Authentication errors typically indicate incorrect or expired API keys; verify and update credentials.
    • Validation errors from the API usually specify which field is invalid or missing; ensure required properties are set correctly.
    • If the node is set to continue on failure, errors will be returned in the output JSON under an error property.

Links and References

Discussion