Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The node interacts with the Mindz API, specifically focusing on managing subscriptions and their related products. The "List Products" operation under the "Subscription" resource retrieves a list of products associated with a given subscription plan. This is useful for scenarios where you need to view or manage the products tied to a particular subscription, such as displaying available products in a user interface, auditing subscription contents, or integrating subscription product data into other workflows.

Practical examples:

  • Fetching all products linked to a specific subscription plan to display them in a dashboard.
  • Automating updates or notifications based on the products included in a subscription.
  • Integrating subscription product details into billing or reporting systems.

Properties

Name Meaning
Subscription Plan ID The unique identifier of the subscription plan whose products you want to list. Required.

Output

The output JSON contains the list of products associated with the specified subscription plan. Each product entry typically includes details such as product ID, name, description, pricing, and other relevant metadata as provided by the Mindz API.

If the node supports binary data output (not explicitly shown here), it would represent any file or media content related to the subscription products, but this is not indicated in the provided code.

Dependencies

  • Requires an active connection to the Mindz API via an OAuth2 API credential.
  • The node depends on the Mindz API being accessible and properly authenticated.
  • No additional external services or environment variables are explicitly required beyond the API authentication.

Troubleshooting

  • Common issues:

    • Invalid or missing Subscription Plan ID will cause the operation to fail.
    • Authentication errors if the OAuth2 credentials are expired or misconfigured.
    • Network connectivity problems preventing access to the Mindz API.
  • Error messages and resolutions:

    • "Authentication failed" — Verify that the API credentials are correct and have not expired.
    • "Subscription Plan ID is required" — Ensure the Subscription Plan ID property is set and valid.
    • "Network error" — Check internet connectivity and API endpoint availability.

Links and References

  • Mindz API Documentation (general reference for API endpoints and data structures)
  • OAuth2 Authentication setup guides for n8n integrations

Discussion