Mindz icon

Mindz

Interact with Mindz API

Actions116

Overview

The node provides integration with the Mindz API, allowing users to manage various Mindz resources such as enrollments, teams, users, courses, email lists, and more. Specifically, for the Email List resource with the Delete operation, this node enables users to delete an existing email list by specifying its unique identifier.

This functionality is useful in scenarios where you need to programmatically remove outdated or unwanted email lists from your Mindz account, helping maintain clean and relevant mailing data. For example, after a marketing campaign ends or when consolidating multiple email lists, you can automate the deletion process using this node.

Properties

Name Meaning
Email List ID The unique identifier of the email list to delete. This is a required string parameter.

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation that the email list was successfully deleted or details about any error encountered.

If the node supports binary data output (not indicated here), it would generally relate to file attachments or similar content, but for this delete operation, the output is purely JSON-based.

Dependencies

  • Requires an active connection to the Mindz API.
  • Needs an API authentication token configured via credentials in n8n (an OAuth2 or API key credential).
  • No additional external dependencies are indicated.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Email List ID will likely cause the API to return an error.
    • Missing or incorrect API credentials will prevent successful communication with the Mindz API.
    • Network connectivity problems may cause timeouts or failures.
  • Error messages:

    • "Email List not found" — Verify the Email List ID is correct and exists.
    • "Authentication failed" — Check that the API credentials are valid and have not expired.
    • "Permission denied" — Ensure the authenticated user has rights to delete email lists.

Resolving these typically involves verifying input parameters, checking credentials, and ensuring proper permissions.

Links and References

  • Mindz API Documentation (general reference for endpoints and authentication)
  • n8n documentation on creating and configuring API credentials
  • Best practices for managing email lists in Mindz (if available)

Discussion