Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node provides integration with the Mindz API, allowing users to manage various resources such as courses, enrollments, users, teams, subscriptions, emails, and payment-related entities. Specifically, for the Course resource with the Delete operation, this node enables users to delete a course by specifying its unique identifier.

This functionality is useful in scenarios where course management automation is needed, such as removing outdated or incorrect courses from an educational platform. For example, an administrator could automate cleanup of courses that are no longer offered or have been replaced.

Properties

Name Meaning
Course ID The unique identifier of the course to be deleted. This is a required string property.

Output

The output of the node after executing the Delete operation on a Course typically contains JSON data representing the result of the deletion request. This may include confirmation of successful deletion or details about the deleted course entity depending on the API response.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active connection to the Mindz API.
  • Requires an API authentication token configured via OAuth2 credentials within n8n.
  • No additional external dependencies are indicated.

Troubleshooting

  • Common issues:
    • Providing an invalid or non-existent Course ID will likely cause the API to return an error indicating the course was not found.
    • Missing or expired API authentication tokens will result in authorization errors.
  • Error messages:
    • "Course not found" — Verify the Course ID is correct and exists.
    • "Unauthorized" or "Authentication failed" — Check that the API credentials are correctly set up and valid.
  • To resolve these, ensure the Course ID is accurate and the API credentials are properly configured and refreshed if necessary.

Links and References

  • Mindz API documentation (general reference for endpoints and authentication)
  • n8n OAuth2 credential setup guide

Discussion