Instantly icon

Instantly

Interact with Instantly API

Overview

This node interacts with the Instantly API to retrieve multiple email accounts. It is designed to fetch a list of email accounts managed within the Instantly platform, either returning all available accounts or limiting the number of results based on user input.

Common scenarios where this node is beneficial include:

  • Exporting or syncing email account data from Instantly to other systems.
  • Auditing or reporting on email accounts used in campaigns.
  • Automating workflows that require bulk processing or analysis of email accounts.

For example, a marketing automation workflow might use this node to get all email accounts and then trigger personalized campaign actions for each account.

Properties

Name Meaning
Return All Whether to return all email accounts or only up to a specified limit.
Limit The maximum number of email accounts to return when "Return All" is set to false. Maximum allowed is 100.

Output

The node outputs an array of JSON objects representing email accounts. Each object corresponds to an individual email account retrieved from the Instantly API. The structure typically includes fields such as email address, first name, last name, and possibly other metadata related to the account.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating requests to the Instantly API.
  • The node uses the Instantly API endpoints under /api/v2/accounts to fetch account data.
  • No additional external services are required beyond the Instantly API.
  • Proper configuration of the API authentication credential in n8n is necessary.

Troubleshooting

  • Limit Exceeded Error: If you set the "Limit" property above 100, the node will throw an error because the Instantly API enforces a maximum limit of 100 per request. To resolve, reduce the limit to 100 or enable "Return All" to paginate through all results.
  • API Authentication Errors: Ensure that the API key credential is correctly configured and has sufficient permissions to access account data.
  • Empty Results: If no accounts are returned, verify that there are accounts available in the Instantly platform and that any filters or search parameters (if added later) are correct.
  • Pagination Issues: When "Return All" is enabled, the node paginates through results. Network issues or API rate limits may cause incomplete data retrieval. Check API usage limits and network connectivity.

Links and References

Discussion