Notificações Inteligentes icon

Notificações Inteligentes

NI Integration

Overview

This node operation removes one or more specified lists from a given lead in a marketing or CRM system. It is useful when you want to disassociate a lead from certain mailing lists, segments, or groups, for example, if the lead has opted out of specific communications or if you want to update their subscription preferences.

Practical examples:

  • Removing a lead from promotional email lists they no longer wish to receive.
  • Cleaning up lead associations by removing outdated or irrelevant list memberships.
  • Managing dynamic segmentation by updating which lists a lead belongs to based on behavior or status changes.

Properties

Name Meaning
Lead ID The unique identifier of the lead from which lists will be removed.
List ID(s) Comma-separated IDs of the lists to remove from the lead. These are numeric identifiers.

Output

The node outputs JSON data representing the result of the removal operation. Typically, this would include confirmation that the specified lists were successfully removed from the lead, possibly including the updated lead information or status.

If the node supports binary data output (not evident from the provided code), it would relate to any files or attachments associated with the lead or lists, but this is not indicated here.

Dependencies

  • Requires an API key or authentication token to access the external service at https://api.notificacoesinteligentes.com.
  • Uses HTTP requests to interact with the external API endpoint managing leads and lists.
  • The node depends on n8n's HTTP request helper methods configured with appropriate credentials.

Troubleshooting

  • Invalid Lead ID or List IDs: Ensure that the Lead ID and List IDs are correct and exist in the system. Invalid IDs may cause errors or no action.
  • Authentication Errors: If the API key or authentication token is missing or invalid, the node will fail to connect to the external service.
  • Network Issues: Timeouts or connectivity problems can cause the node to error out; verify network access to the API endpoint.
  • Malformed List IDs: The List ID(s) input must be comma-separated numbers without extra characters; improper formatting may cause parsing errors.

Common error messages might include:

  • "Unauthorized" or "Authentication failed" — check API credentials.
  • "Lead not found" — verify the Lead ID.
  • "Invalid list IDs" — ensure list IDs are valid integers and exist.

Links and References

Discussion