Actions48
- Custom Variable Actions
- Custom Variable Group Actions
- Event Actions
- Integration Actions
- Lead Actions
- Lead List Actions
Overview
This node operation "Get List by ID" under the "Lead List" resource retrieves detailed information about a specific lead list using its unique identifier. It is useful in scenarios where you need to fetch metadata or details of a particular lead list from an external service, such as for reporting, synchronization, or further processing within an automation workflow.
A practical example would be fetching a lead list's details before adding or removing leads, ensuring that the list exists and obtaining its source information if needed.
Properties
| Name | Meaning |
|---|---|
| List ID | Unique identifier of the lead list to retrieve. |
| Include Source Details | Option to include additional source details of the list. Available option: Source. |
Output
The output JSON contains the detailed data of the requested lead list identified by the provided List ID. This typically includes metadata fields describing the list and, if requested, its source details.
No binary data output is indicated in the code.
Dependencies
- Requires access to an external API at
https://api.notificacoesinteligentes.com. - The node uses an authenticated HTTP request method (
httpRequestWithAuthentication) which implies the need for a configured API authentication token or credential. - Network connectivity and proper API permissions are necessary to successfully retrieve the lead list data.
Troubleshooting
- Common issues:
- Invalid or missing List ID will cause the API call to fail or return no data.
- Authentication errors if the API key/token is not set up correctly.
- Network timeouts or connectivity issues with the external API endpoint.
- Error messages:
- Errors related to HTTP requests (e.g., 401 Unauthorized, 404 Not Found) indicate problems with credentials or invalid List ID.
- Timeout errors suggest network or server responsiveness issues; retrying or increasing timeout may help.
- Resolution tips:
- Verify the List ID is correct and exists in the external system.
- Ensure API credentials are properly configured in n8n.
- Check network connectivity and API service status.
Links and References
- Notificações Inteligentes API Documentation (assumed base URL, check actual docs for endpoints and parameters)
- n8n HTTP Request Node documentation for configuring authenticated requests.