FullFunnel Opportunities

Gerenciar oportunidades/negócios na FullFunnel (GoHighLevel)

Overview

This node manages opportunities (also called deals) in the FullFunnel (GoHighLevel) platform. It allows users to perform various operations on opportunities such as creating new ones, retrieving details, updating information, changing status, searching, listing all, and deleting opportunities.

The Delete Opportunity operation specifically deletes an opportunity by its ID. This is useful for cleaning up outdated or incorrect opportunities from your sales pipeline.

Practical example:

  • Automatically remove opportunities that were marked as abandoned or lost after a certain period.
  • Clean up test or duplicate opportunities created during data imports or testing phases.

Properties

Name Meaning
Opportunity ID The unique identifier of the opportunity to delete. This is required to specify which opportunity to remove.

Output

The output JSON contains a simple confirmation object indicating success and echoing back the deleted opportunity's ID:

{
  "success": true,
  "opportunityId": "string"
}

No binary data is returned by this operation.

Dependencies

  • Requires an API key credential for FullFunnel (GoHighLevel) API authentication.
  • The node uses the FullFunnel REST API endpoint https://rest.gohighlevel.com/v2/opportunities/{id} with HTTP DELETE method.
  • Proper configuration of the API credentials in n8n is necessary for successful requests.

Troubleshooting

  • Common issues:

    • Invalid or missing Opportunity ID will cause the API call to fail.
    • Network or authentication errors if the API key is invalid or expired.
    • Attempting to delete an opportunity that does not exist may result in an error response from the API.
  • Error messages:

    • "Invalid JSON in custom fields" — Not applicable for delete operation but common in other operations when JSON input is malformed.
    • API errors will be surfaced with their message and any additional details from the API response.
  • Resolution tips:

    • Ensure the Opportunity ID is correct and exists in the FullFunnel system.
    • Verify API credentials are valid and have sufficient permissions.
    • Use the "Continue On Fail" option in the node settings to handle errors gracefully in workflows.

Links and References

Discussion