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. This is useful for automating contact management workflows such as adding new leads, updating contact details, or syncing contacts between systems.
For the Create Contact operation specifically, the node creates a new contact in FullFunnel by providing essential contact information like email, first name, last name, and phone number.
Practical example:
- Automatically add new webinar registrants as contacts in FullFunnel.
- Sync contacts collected from a form submission into FullFunnel for follow-up campaigns.
Properties
| Name | Meaning |
|---|---|
| The email address of the contact. This is required to create a new 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 output is an array of JSON objects representing the created contacts. Each item contains the full contact data returned by FullFunnel after creation, including all fields stored on the contact record.
Example output structure:
{
"json": {
"email": "name@email.com",
"firstName": "John",
"lastName": "Doe",
"phone": "+1234567890",
"locationId": "some-location-id",
"id": "contact-id",
"...": "other contact fields"
}
}
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for FullFunnel (HighLevel) with appropriate permissions.
- 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 credentials in n8n before using the node.
Troubleshooting
Common issues:
- Missing or invalid API key will cause authentication errors.
- Providing an invalid email format may result in API validation errors.
- Network connectivity issues can cause request failures.
Error messages:
"Unauthorized"or"Invalid API key": Check that the API key credential is correctly set and valid."Validation failed": Ensure required fields like email are provided and correctly formatted."Request failed"or timeout errors: Verify network access to the FullFunnel API endpoint.
To handle errors gracefully, enable the node's "Continue On Fail" option to process subsequent items even if one fails.
Links and References
- FullFunnel (HighLevel) API Documentation (for detailed API usage and field definitions)
- n8n Documentation (for general node usage and credential setup)