Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node provides integration with the Mindz platform, specifically allowing management of "Email Campaign Excluded Course" resources. The Delete operation removes a course from the exclusion list of an email campaign. This means that the specified course will no longer be excluded from receiving emails sent through that campaign.

This node is useful in scenarios where you want to dynamically update which courses are excluded from an email campaign, for example:

  • Removing a course from the exclusion list so students enrolled in that course start receiving campaign emails.
  • Managing targeted communications by adjusting exclusions without manual intervention in the Mindz platform UI.

Properties

Name Meaning
Email Campaign ID The unique identifier of the email campaign from which a course exclusion should be removed.
Course ID The unique identifier of the course to be removed from the email campaign's exclusion list.

Output

The output JSON structure typically contains confirmation or details about the deletion action performed on the Mindz platform. It may include fields such as success status, IDs of affected resources, or error messages if the deletion failed.

No binary data output is expected for this operation.

Dependencies

  • Requires an active connection to the Mindz API via an OAuth2-based API key credential configured in n8n.
  • The node depends on the Mindz API endpoints related to email campaigns and their excluded courses.
  • Proper permissions on the Mindz account to modify email campaign exclusions are necessary.

Troubleshooting

  • Common Issues:

    • Invalid or missing Email Campaign ID or Course ID parameters will cause the operation to fail.
    • Insufficient permissions or expired API credentials can result in authentication errors.
    • Attempting to delete a course exclusion that does not exist may return an error or no-op response.
  • Error Messages:

    • "Resource not found" — Verify that both the Email Campaign ID and Course ID are correct and exist in the Mindz system.
    • "Unauthorized" or "Authentication failed" — Check that the API credentials are valid and have not expired.
    • "Missing required parameter" — Ensure all required input properties are provided.

Resolving these usually involves verifying input values, refreshing credentials, and confirming user permissions.

Links and References

  • Mindz API Documentation (hypothetical link)
  • n8n OAuth2 Credential Setup Guide
  • Mindz Email Campaign Management User Guide

Discussion