Notificações Inteligentes icon

Notificações Inteligentes

NI Integration

Overview

The node operation "Add Leads to List" allows users to add multiple leads, identified by their IDs, to a specific lead list. This is useful in scenarios where you want to organize or segment leads into different lists for targeted marketing campaigns, follow-ups, or reporting purposes. For example, after importing new leads from a trade show, you can use this operation to add those leads to a dedicated list for that event.

Properties

Name Meaning
List ID Unique identifier of the lead list to which the leads will be added.
Leads (IDs) Comma-separated string of lead identifiers to add to the list. Example: 17, 25, 33.

Output

The output JSON contains the result of the operation, typically confirming the addition of the specified leads to the list. The exact structure depends on the API response but generally includes success status and possibly details about the updated list or leads. There is no indication that binary data is returned by this operation.

Dependencies

  • Requires an API key credential or similar authentication token to access the external service at https://api.notificacoesinteligentes.com.
  • The node uses HTTP requests with authentication to communicate with the external API.
  • Network connectivity to the external API endpoint is necessary.

Troubleshooting

  • Invalid List ID: If the provided List ID does not exist or is incorrect, the API may return an error indicating the list was not found. Verify the List ID before running the node.
  • Malformed Lead IDs: The input expects a comma-separated string of numeric lead IDs. Non-numeric or invalid IDs will be filtered out. Ensure the input format matches the expected pattern.
  • Authentication Errors: Missing or invalid API credentials will cause authentication failures. Confirm that the API key or token is correctly configured in n8n.
  • API Rate Limits or Timeouts: The node sets a timeout of 5 seconds for requests. If the API is slow or rate-limited, requests might fail. Consider retrying or increasing timeout if supported.
  • Empty Response or No Leads Added: If the leads array is empty after parsing, no leads will be added. Make sure the input string contains valid lead IDs.

Links and References

Discussion