Actions15
Overview
This node integrates with the Instantly API to manage accounts, campaigns, and leads. Specifically for the Account - Update operation, it updates an existing account identified by its email address. Users can modify fields such as the full name and password of the account.
Common scenarios where this node is useful include:
- Updating user details in a marketing or sales platform.
- Automating account management workflows where user information changes frequently.
- Synchronizing account data between Instantly and other systems.
Example: Automatically update an account's full name and password when a user changes their profile information in another system.
Properties
| Name | Meaning |
|---|---|
| The email address identifying the account to update (required). | |
| Update Fields | Collection of fields to update on the account: |
| - Full Name: The new full name for the account. | |
| - Password: The new password for the account (input masked). |
Output
The node outputs JSON data representing the updated account object returned from the Instantly API after the update operation. This typically includes the account's current state with updated fields.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Instantly API.
- The node uses HTTP requests to Instantly's REST endpoints under
/accounts. - No additional environment variables are required beyond the API authentication setup.
Troubleshooting
Common issues:
- Providing an incorrect or non-existent email will result in errors since the account cannot be found.
- Omitting required fields or providing invalid field values may cause the API to reject the request.
- Network or authentication failures will prevent successful API calls.
Error messages:
- Errors indicating "account not found" suggest verifying the email input.
- Authentication errors imply checking the API key credentials.
- Validation errors on update fields require ensuring correct data types and formats.
To resolve these, verify inputs carefully, ensure valid API credentials, and check network connectivity.
Links and References
- Instantly API Documentation (for detailed API endpoint info)
- n8n documentation on creating custom nodes