Overview
This node manages contacts in the FullFunnel (GoHighLevel) platform. Specifically, the Delete Contact operation allows users to remove a contact by its unique ID from their FullFunnel account.
Common scenarios for this node include:
- Cleaning up outdated or invalid contacts from your marketing or sales database.
- Automating contact lifecycle management by removing contacts who unsubscribe or opt out.
- Integrating with other workflows where contact deletion is triggered by external events.
Example use case: Automatically delete a contact when they request data removal via a form submission, ensuring compliance with privacy regulations.
Properties
| Name | Meaning |
|---|---|
| Contact ID | The unique identifier of the contact to delete |
Output
The output JSON contains a simple confirmation object indicating success and echoing the deleted contact's ID:
{
"success": true,
"contactId": "the-id-of-the-deleted-contact"
}
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for FullFunnel (GoHighLevel) to authenticate requests.
- The node uses the FullFunnel REST API endpoint
https://rest.gohighlevel.com/v2/contacts/{contactId}with the HTTP DELETE method. - The user must configure the FullFunnel API credentials in n8n before using this node.
Troubleshooting
Error: Missing Contact ID
Ensure that the "Contact ID" property is provided and valid. This field is required to identify which contact to delete.API Authentication Errors
Verify that the FullFunnel API credentials are correctly set up and have sufficient permissions to delete contacts.Contact Not Found
If the specified contact ID does not exist, the API may return an error. Confirm the contact ID is correct and exists in your FullFunnel account.Network or API Issues
Temporary network failures or API downtime can cause errors. Retry after some time or check FullFunnel service status.
If the node is configured to continue on failure, errors will be returned in the output JSON under an error field with additional details.
Links and References
- FullFunnel (GoHighLevel) API Documentation (official API docs)
- n8n Documentation - Creating Custom Nodes