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
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
- Mindz API Documentation (general reference): https://mindz.example.api/docs (Replace with actual URL)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/