Actions115
- 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
- Enroll Actions
- Email Campaign Excluded Plan Actions
- Email Campaign List Actions
- Email Campaign Plan Actions
- Email List Actions
- MindzPay Account Actions
- MindzPay Invoice Actions
- MindzPay Payment Actions
- MindzPay Subscription Actions
- Subscription Actions
- Team Actions
- User Actions
Overview
The node provides integration with the Mindz API, allowing users to perform various operations on different Mindz resources. Specifically, for the Bundle resource and the Clone operation, this node enables duplicating an existing bundle by specifying its ID and assigning a new name to the cloned bundle.
This functionality is useful in scenarios where you want to quickly replicate an existing bundle configuration without manually recreating all its details. For example, if you have a course bundle that you want to reuse as a template for a new offering, cloning it saves time and ensures consistency.
Properties
| Name | Meaning |
|---|---|
| Bundle ID | The unique identifier of the existing bundle you want to clone. |
| Name | The new name to assign to the cloned bundle. |
Output
The node outputs JSON data representing the newly cloned bundle. This typically includes details such as the new bundle's ID, name, and other relevant metadata returned by the Mindz API after successful cloning.
No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the Mindz API.
- Requires an API authentication token or OAuth2 credential configured in n8n to authorize requests.
- The node depends on the bundled Mindz API client code (imported as
r.bundleExecutefor bundle operations).
Troubleshooting
- Invalid Bundle ID: If the provided Bundle ID does not exist or is incorrect, the API will likely return an error indicating the bundle was not found. Verify the Bundle ID before running the node.
- Authentication Errors: Ensure that the API credentials are correctly set up and have sufficient permissions to clone bundles.
- Missing Required Parameters: Both "Bundle ID" and "Name" are required. Omitting either will cause the node to fail.
- API Rate Limits: If cloning fails intermittently, check if the Mindz API rate limits are being exceeded.
Links and References
- Mindz API Documentation (hypothetical link)
- n8n documentation on Creating Custom Nodes