Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node interacts with the Mindz API to retrieve pricing information for a specific course. It is designed to fetch the price details of a course identified by its unique Course ID. This functionality is useful in scenarios where you need to dynamically obtain course pricing within an automation workflow, such as displaying current prices in a dashboard, validating pricing before enrollment, or integrating course pricing into billing systems.

Practical example:
You have an automation that enrolls users into courses and needs to verify the course price before processing payment. Using this node operation, you can fetch the latest price for the selected course and use it downstream in your workflow.

Properties

Name Meaning
Course ID The unique identifier of the course whose price you want to retrieve. This is a required string input.

Output

The output JSON contains the price information of the specified course. While the exact structure depends on the Mindz API response, typically it includes fields such as:

  • price: The numeric value representing the cost of the course.
  • currency: The currency code (e.g., USD, EUR) for the price.
  • Additional metadata related to pricing may also be included depending on the API.

No binary data output is expected from 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 being accessible and the provided Course ID being valid.

Troubleshooting

  • Invalid Course ID: If the Course ID does not exist or is incorrect, the node may return an error or empty result. Verify the Course ID is correct.
  • Authentication errors: Ensure the API credentials are correctly set up and have sufficient permissions to access course pricing.
  • API connectivity issues: Network problems or API downtime can cause failures. Check network connectivity and Mindz service status.
  • Unexpected response format: If the API changes, the node might not parse the response correctly. Review API documentation for updates.

Links and References

Discussion