Actions14
- Campaign Actions
- Customer Actions
- Lead Actions
- Table Actions
- Webhook Actions
Overview
This node integrates with the LeadTable API to manage leads and related entities such as campaigns, customers, tables, and webhooks. Specifically, the Lead - Search by Email operation allows users to search for leads using an email address. This is useful in scenarios where you want to quickly find all lead records associated with a particular email, for example:
- When verifying if a lead already exists before creating a new one.
- To retrieve lead details for follow-up or analysis based on an email contact.
- To automate workflows that trigger actions when a lead with a specific email is found.
The node supports pagination through "Page" and "Limit" parameters, enabling efficient handling of large result sets.
Properties
| Name | Meaning |
|---|---|
| The email address to search for leads. | |
| Page | The page number for paginated results (default is 1). |
| Limit | The maximum number of results to return per page (minimum 1, default is 50). |
Output
The output is a JSON array containing lead objects matching the searched email address. Each item in the output corresponds to a lead record returned by the LeadTable API. The exact structure depends on the API response but typically includes lead details such as IDs, names, statuses, and other metadata.
This operation does not output binary data.
Dependencies
- Requires an API key credential and an associated email address for authentication with the LeadTable API.
- The base URL defaults to
https://api.lead-table.com/api/v3/externalbut can be customized via credentials. - The node uses HTTP requests to communicate with the LeadTable REST API endpoints.
Troubleshooting
- Authentication Errors (403): If you receive an authentication failure error, verify that your API key and email address are correctly configured in the node credentials.
- Invalid Customer or Campaign Selection: Although not directly relevant to this operation, other operations require valid customer and campaign selections. Ensure these are properly set to avoid errors.
- Empty Results: If no leads are found for the given email, the output will be an empty array. Confirm the email address is correct and exists in the system.
- Pagination Issues: Setting the "Page" or "Limit" parameters incorrectly may result in unexpected results or empty pages. Use sensible values starting from page 1.
Links and References
- LeadTable API Documentation (assumed official docs)
- n8n Expressions Documentation - for dynamic parameter usage in n8n nodes