Notificações Inteligentes icon

Notificações Inteligentes

Integração do NI

Overview

The node operation "Adicionar Listas A Um Lead" (Add Lists To A Lead) is designed to associate one or more lists with a specific lead in a CRM or marketing system. This operation is useful when you want to categorize or segment leads by adding them to relevant mailing lists, campaign groups, or other list-based classifications.

Common scenarios include:

  • Adding a lead to multiple marketing email lists based on their interests.
  • Associating a lead with event invitation lists.
  • Organizing leads into different sales funnels or customer segments.

For example, if you have a lead identified by ID "12345" and want to add them to lists with IDs "1001" and "1002", this operation will update the lead's record to reflect these associations.

Properties

Name Meaning
ID Do Lead The unique identifier of the lead to which the lists will be added.
ID(s) Da(s) Lista(s) One or more list IDs (comma-separated) that should be associated with the lead.

Output

The output JSON structure typically contains information about the updated lead after the lists have been added. This may include confirmation of the lead ID, the lists now associated with the lead, and any status messages indicating success or failure.

If the node supports binary data output, it would generally relate to attachments or files linked to the lead, but this operation primarily deals with JSON data representing lead-list associations.

Dependencies

  • Requires access to the CRM or marketing platform API where leads and lists are managed.
  • An API authentication token or key must be configured in n8n credentials to authorize requests.
  • Network connectivity to the external service managing leads and lists.

Troubleshooting

  • Invalid Lead ID: If the provided lead ID does not exist, the node may return an error indicating the lead was not found. Verify the lead ID is correct.
  • Invalid List IDs: Providing non-existent or malformed list IDs can cause errors. Ensure list IDs are valid and properly formatted (comma-separated).
  • Authentication Errors: Missing or invalid API credentials will prevent the node from executing successfully. Check credential configuration.
  • API Rate Limits: Excessive requests might trigger rate limiting; consider adding delays or retries.
  • Empty Input: Required fields like lead ID or list IDs must not be empty; otherwise, the node will fail validation.

Links and References

  • Refer to your CRM or marketing platform API documentation for details on how leads and lists are managed.
  • n8n documentation on creating and using custom nodes: https://docs.n8n.io/integrations/creating-nodes/
  • General best practices for handling API authentication and error handling in n8n workflows.

Discussion