Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The "Email Create" operation in this Mindz node allows users to add a new email contact to a specified email list within the Mindz platform. This is useful for managing mailing lists, building contact databases, and automating email marketing campaigns.

Typical use cases include:

  • Adding new subscribers collected from web forms or CRM systems.
  • Importing contacts into specific email lists for targeted communication.
  • Automating subscription management workflows by programmatically creating email entries.

For example, you might use this node to add a new user’s email address along with their first and last name to a newsletter list, optionally marking them as subscribed or unsubscribed.

Properties

Name Meaning
Email List ID The unique identifier of the email list to which the new email contact will be added.
Email Address The email address of the contact to create (e.g., name@email.com).
First Name (Optional) The first name of the contact.
Last Name (Optional) The last name of the contact.
Is Subscribed Boolean flag indicating whether the contact should be marked as subscribed to the list.

Output

The node outputs JSON data representing the newly created email contact record. This typically includes fields such as the contact's email address, associated list ID, subscription status, and any other metadata returned by the Mindz API.

No binary data output is expected from this operation.

Dependencies

  • Requires an active connection to the Mindz API via an OAuth2-based credential.
  • The node depends on proper configuration of the Mindz API credentials within n8n.
  • Network connectivity to the Mindz service endpoint is necessary.

Troubleshooting

  • Common Issues:

    • Invalid or missing Email List ID: Ensure the provided list ID exists and is accessible.
    • Invalid email format: The email address must be properly formatted.
    • Authentication errors: Verify that the OAuth2 credentials are valid and have not expired.
    • Permission issues: The authenticated user must have rights to modify the specified email list.
  • Error Messages:

    • "Invalid Email List ID": Check that the list ID is correct and corresponds to an existing list.
    • "Unauthorized" or "Authentication failed": Re-authenticate or update the API credentials.
    • "Email already exists": The email may already be present in the list; consider using an update operation instead.

Resolving these usually involves verifying input parameters, refreshing credentials, and ensuring API permissions.

Links and References

Discussion