Actions29
Overview
This node interacts with the BookedIn platform to manage and retrieve data related to various resources such as agents, leads, lists, strategies, campaigns, and human messages. Specifically, for the List resource and the Get List Leads operation, it fetches leads that belong to a specified list.
Use cases include:
- Retrieving all leads associated with a particular marketing or sales list.
- Paginating through leads in a list to process or analyze them in batches.
- Integrating lead data from BookedIn into other workflows or CRMs.
For example, you might use this node to get the first 100 leads from a prospecting list to send targeted emails or to update their status in your CRM.
Properties
| Name | Meaning |
|---|---|
| List ID | The unique identifier of the list from which to retrieve leads (e.g., li_abcdef123456). |
| Skip | Number of lead records to skip for pagination (default is 0). |
| Limit | Maximum number of lead records to return (default is 100). |
Output
The output is a JSON array where each item represents a lead belonging to the specified list. Each lead object contains details as provided by the BookedIn API, typically including contact information, metadata, and other lead-specific fields.
No binary data is output by this operation.
Dependencies
- Requires an API key credential for authenticating requests to the BookedIn API.
- The node makes HTTP requests to endpoints under
https://api.bookedin.ai/api/v1/. - Proper configuration of the API authentication credential in n8n is necessary.
Troubleshooting
- Invalid List ID: If the provided List ID does not exist or is malformed, the API will likely return an error. Verify the List ID format and existence.
- Pagination Issues: Using very high values for
skiporlimitmay result in empty responses or performance issues. Use reasonable values. - API Authentication Errors: Ensure the API key credential is correctly set up and has sufficient permissions.
- Network Errors: Check network connectivity and firewall settings if requests fail.
- Empty Results: If no leads are returned, confirm that the list actually contains leads.
Links and References
- BookedIn API Documentation (general reference for API endpoints)
- n8n HTTP Request Node Documentation (for understanding HTTP request handling)
If you need summaries for other operations or resources, feel free to ask!