Overview
This node manages contacts in the FullFunnel (HighLevel) system via its API. It supports creating, retrieving, updating, deleting, and listing contacts. The "Delete" operation specifically removes a contact by its unique ID.
Use cases include:
- Automating contact management workflows.
- Removing outdated or unwanted contacts from your FullFunnel account.
- Integrating contact deletion into larger automation sequences to keep your database clean.
Example: Automatically delete a contact when they unsubscribe from a mailing list.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact to delete |
Output
The output JSON for the Delete operation is an object indicating success:
{
"success": true
}
No binary data is returned.
Dependencies
- Requires an API key credential for FullFunnel API authentication.
- Needs the location ID associated with the FullFunnel account.
- Makes HTTP requests to
https://services.leadconnectorhq.comusing the FullFunnel API version2021-07-28.
Troubleshooting
Common issues:
- Invalid or missing Contact ID will cause the API to fail.
- Incorrect or expired API key will result in authorization errors.
- Network connectivity problems can cause request failures.
Error messages:
- If the contact does not exist, the API may return a 404 error.
- Authorization errors typically indicate invalid credentials.
- To resolve, verify the Contact ID exists, ensure the API key is valid, and check network access.
The node supports "Continue On Fail" mode to allow workflow continuation despite individual errors.
Links and References
- FullFunnel (HighLevel) API Documentation (hypothetical link as not provided in code)