FullFunnel Contacts

Gerenciar contatos na FullFunnel (HighLevel)

Actions5

Overview

This node manages contacts in the FullFunnel (HighLevel) platform by interacting with its API. It supports operations such as creating, retrieving, updating, deleting, and listing contacts. The "Delete" operation specifically removes a contact identified by its unique Contact ID.

Typical use cases include automating contact management workflows, such as cleaning up outdated contacts, integrating contact deletion into larger automation sequences, or synchronizing contact data between FullFunnel and other systems.

Example: Automatically delete a contact from FullFunnel when they unsubscribe from a mailing list.

Properties

Name Meaning
Contact ID The unique identifier of the contact to delete. This is required for the Delete operation.

Output

The output JSON for the Delete operation is a simple confirmation object indicating success:

{
  "success": true
}

No binary data is returned by this operation.

Dependencies

  • Requires an API key credential for authenticating with the FullFunnel API.
  • The node uses the FullFunnel API endpoint at https://services.leadconnectorhq.com.
  • The API version header "2021-07-28" is used in requests.
  • Requires configuration of the API key and location ID credentials within n8n.

Troubleshooting

  • Common issues:

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

    • If the contact does not exist or has already been deleted, the API may return a 404 error.
    • Authentication failures typically return 401 Unauthorized errors.
  • Resolutions:

    • Verify that the Contact ID is correct and corresponds to an existing contact.
    • Ensure the API key credential is valid and has necessary permissions.
    • Check network connectivity and API endpoint accessibility.
    • Use the node's "Continue On Fail" option to handle errors gracefully in workflows.

Links and References

Discussion