Mindz icon

Mindz

Interact with Mindz API

Actions116

Overview

The node provides integration with the Mindz platform, specifically allowing management of email campaigns linked to courses. The "Delete" operation under the "Email Campaign Course" resource enables users to remove an association between a specific email campaign and a course. This is useful in scenarios where an email campaign should no longer target or be associated with a particular course, such as when a course is discontinued or the campaign's audience needs adjustment.

Practical example:

  • You have an ongoing email campaign promoting several courses. One course is removed from your offerings, so you use this node operation to delete the link between that course and the email campaign, ensuring recipients do not receive emails about the removed course.

Properties

Name Meaning
Email Campaign ID The unique identifier of the email campaign from which the course association will be deleted.
Course ID The unique identifier of the course to be disassociated from the specified email campaign.

Output

The output JSON typically contains confirmation details about the deletion action performed on the email campaign-course association. It may include status indicators or metadata confirming successful removal.

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.
  • Proper configuration of the Mindz API credentials within n8n is necessary.
  • Network access to the Mindz API endpoints must be available.

Troubleshooting

  • Common issues:

    • Invalid or missing Email Campaign ID or Course ID parameters can cause the operation to fail.
    • Insufficient permissions or expired API credentials may result in authorization errors.
    • Attempting to delete a non-existent association might return an error or no-op response.
  • Error messages and resolutions:

    • "Unauthorized" or "Authentication failed": Verify that the API credentials are correctly configured and have not expired.
    • "Resource not found": Check that both the Email Campaign ID and Course ID are correct and exist in the Mindz system.
    • "Invalid parameters": Ensure all required fields are provided and properly formatted.

Links and References

  • Mindz API Documentation (general reference for API endpoints and authentication)
  • n8n OAuth2 Credential Setup Guide (for configuring API credentials)

Discussion