Mindz icon

Mindz

Interact with Mindz API

Actions116

Overview

This node integrates with the Mindz API to perform various operations on different resources related to the Mindz platform. Specifically, for the Bundle resource with the Get operation, it retrieves detailed information about a specific bundle identified by its Bundle ID. This is useful in scenarios where you need to fetch bundle details such as contents, pricing, or metadata for further processing or display.

Practical examples include:

  • Fetching bundle details to display in a dashboard.
  • Retrieving bundle information before updating or cloning it.
  • Using bundle data to automate workflows involving course packages or product bundles.

Properties

Name Meaning
Bundle ID The unique identifier of the bundle you want to retrieve. This is a required string input.

Output

The output of this node's execute() method for the Bundle Get operation will be a JSON object containing the details of the requested bundle. The structure typically includes fields such as bundle metadata, associated courses or products, pricing information, and other relevant attributes defined by the Mindz API.

If the node supports binary data output (not indicated here), it would represent any files or media associated with the bundle, but based on the provided code and properties, the output is primarily JSON data describing the bundle.

Dependencies

  • Requires an active connection to the Mindz API using an OAuth2-based API key credential.
  • The node depends on the Mindz API being accessible and the user having appropriate permissions to read bundle data.
  • No additional external services are indicated beyond the Mindz API.

Troubleshooting

  • Common issues:

    • Invalid or missing Bundle ID: Ensure the Bundle ID is correctly specified and exists in the Mindz system.
    • Authentication errors: Verify that the API credentials are valid and have not expired.
    • Network connectivity problems: Confirm that the n8n instance can reach the Mindz API endpoint.
  • Error messages:

    • "Bundle not found" or similar: Check if the Bundle ID is correct.
    • "Unauthorized" or "Authentication failed": Re-authenticate or update the API credentials.
    • Timeout or network errors: Check internet connectivity and Mindz API status.

Links and References

Discussion