Instantly icon

Instantly

Interact with Instantly API

Overview

This node integrates with the Instantly API to manage accounts, campaigns, and leads. Specifically, for the Account - Create operation, it allows users to create a new account in Instantly by providing essential details such as email, password, and full name.

Common scenarios where this node is beneficial include automating user onboarding processes, synchronizing user data from other systems into Instantly, or bulk-creating accounts based on external data sources.

For example, you could use this node to automatically create new Instantly accounts when a user registers on your platform, ensuring seamless integration between your system and Instantly without manual intervention.

Properties

Name Meaning
Email The email address of the account to create (required).
Password The password for the account (required).
Full Name The full name associated with the account (required).

Output

The node outputs JSON data representing the newly created account as returned by the Instantly API. This typically includes fields such as the account's unique identifier, email, full name, creation timestamps, and any other metadata provided by the API.

No binary data output is produced by this operation.

Dependencies

  • Requires an active Instantly API key credential configured in n8n to authenticate requests.
  • Relies on the Instantly REST API endpoint /accounts for creating accounts.
  • Network connectivity to Instantly's API service is necessary.

Troubleshooting

  • Common Issues:

    • Missing required properties (email, password, full name) will cause the request to fail.
    • Invalid or expired API credentials will result in authentication errors.
    • Providing an email that already exists in Instantly may cause a conflict error.
  • Error Messages:

    • Authentication failed: Check that the API key credential is correctly set up and valid.
    • Validation error: Ensure all required fields are provided and formatted correctly.
    • Conflict error: The email might already be registered; verify uniqueness before creating.

To resolve these issues, verify input values, ensure proper credential configuration, and handle errors gracefully in your workflow.

Links and References

Discussion