Mindz icon

Mindz

Interact with Mindz API

Actions116

Overview

The "Subscription - List Products" operation in this Mindz node allows users to retrieve a list of products associated with a specific subscription plan. This is useful for scenarios where you want to manage or review the products tied to a customer's subscription, such as displaying them in a dashboard, syncing subscription details with other systems, or automating billing and inventory processes.

For example, if you have a subscription plan identified by its ID, you can use this operation to fetch all products included in that plan, enabling you to show customers what they have access to or to update product offerings dynamically.

Properties

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

Output

The output will be a JSON object containing the list of products linked to the specified subscription plan. Each product entry typically includes details such as product ID, name, description, pricing, and other relevant metadata defined by the Mindz API.

If the node supports binary data output (not indicated here), it would represent any files or media related to the products, but this operation primarily returns structured JSON data about products.

Dependencies

  • Requires an active connection to the Mindz API via an OAuth2-based API key credential.
  • The node depends on the Mindz API being accessible and the provided subscription plan ID being valid.
  • Proper permissions are needed on the API key to read subscription and product information.

Troubleshooting

  • Invalid Subscription Plan ID: If the provided subscription ID does not exist or is malformed, the node may return an error or empty results. Verify the ID is correct.
  • Authentication Errors: If the OAuth2 credentials are missing, expired, or invalid, the node will fail to connect. Re-authenticate or update credentials as needed.
  • API Rate Limits: Excessive requests might lead to throttling. Implement retries or backoff strategies if applicable.
  • Empty Product List: A valid subscription plan might have no products assigned; confirm the subscription's configuration in Mindz.

Links and References

  • Mindz API Documentation (general reference for API endpoints and data structures)
  • OAuth2 Authentication setup guides within n8n documentation for connecting to external APIs securely

Discussion