Actions116
- Course Actions
- Bundle Actions
- Course Grade Actions
- Course Grade Detail Actions
- Course Teacher Actions
- Email Actions
- Email Campaign Actions
- Email Campaign Course Actions
- Email Campaign Excluded Course Actions
- Email Campaign Excluded List Actions
- Email Campaign Excluded Plan Actions
- Email Campaign List Actions
- Email Campaign Plan Actions
- Email List Actions
- Enroll Actions
- MindzPay Account Actions
- MindzPay Invoice Actions
- MindzPay Payment Actions
- MindzPay Subscription Actions
- Subscription Actions
- Team Actions
- User Actions
Overview
The node interacts with the Mindz API, specifically focusing on managing "Bundles" and their related operations. For the "List Products" operation under the "Bundle" resource, it retrieves a list of products associated with a specified bundle. This is useful in scenarios where you want to programmatically access all products contained within a particular bundle, such as for reporting, synchronization with other systems, or dynamic content display.
Practical examples include:
- Fetching all products in a bundle to display them on a website.
- Synchronizing product lists from Mindz bundles into an external inventory system.
- Automating updates or notifications based on the products included in a bundle.
Properties
| Name | Meaning |
|---|---|
| Bundle ID | The unique identifier of the bundle whose products you want to list. This is a required string input. |
Output
The node outputs JSON data representing the list of products contained in the specified bundle. Each item in the output typically includes details about individual products such as product IDs, names, descriptions, prices, or other relevant metadata as provided by the Mindz API.
If the node supports binary data output (not indicated explicitly here), it would generally relate to files or media associated with the products, but this operation primarily returns structured JSON data.
Dependencies
- Requires an active connection to the Mindz API using an OAuth2-based API key credential configured in n8n.
- The node depends on the Mindz API being accessible and the user having appropriate permissions to read bundle product information.
Troubleshooting
Common issues:
- Invalid or missing Bundle ID: Ensure the Bundle ID is correctly provided and corresponds to an existing bundle.
- Authentication errors: Verify that the API key credential is valid and has not expired.
- Network or API downtime: Check connectivity and Mindz API status.
Error messages:
- "Bundle not found": The provided Bundle ID does not exist; verify the ID.
- "Unauthorized" or "Authentication failed": The API credentials are invalid or lack necessary permissions.
- "Request timeout" or "Network error": There may be connectivity issues; retry or check network settings.
Resolving these usually involves verifying input parameters, refreshing credentials, and ensuring stable network connections.
Links and References
- Mindz API Documentation (general reference): https://docs.mindz.com/api (replace with actual URL if known)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/