Actions15
Overview
This node interacts with the Instantly API to manage leads, specifically allowing you to update lead information. It is useful in scenarios where you need to keep your lead data current by modifying details such as company name, email, first name, last name, or LinkedIn URL. For example, if a lead changes their job or updates their contact information, this node can automate updating those details in your Instantly account.
Properties
| Name | Meaning |
|---|---|
| Lead ID | The unique identifier of the lead to update (required). |
| Update Fields | A collection of fields to update on the lead. Options include: |
| - Company: The company associated with the lead. | |
| - Email: The email address of the lead. | |
| - First Name: The lead's first name. | |
| - Last Name: The lead's last name. | |
| - LinkedIn URL: The LinkedIn profile URL of the lead. |
Output
The node outputs JSON data representing the updated lead object returned from the Instantly API after the update operation. This JSON includes all relevant lead details reflecting the changes made. There is no binary data output.
Dependencies
- Requires an API key credential for authenticating with the Instantly API.
- The node makes HTTP requests to Instantly’s REST API endpoints.
- No additional environment variables are explicitly required beyond the API authentication setup.
Troubleshooting
Common Issues:
- Invalid or missing Lead ID will cause the update request to fail.
- Providing empty or invalid update fields may result in no changes or errors.
- Network or authentication failures can prevent successful API calls.
Error Messages:
- Errors returned from the Instantly API typically include messages about invalid IDs or unauthorized access. Ensure the API key is valid and has sufficient permissions.
- If the node throws an error about missing parameters, verify that the Lead ID and at least one update field are provided.
Resolution Tips:
- Double-check the Lead ID correctness.
- Confirm the API key credential is properly configured in n8n.
- Validate the format and content of update fields before running the node.
Links and References
- Instantly API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes