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 "Mindz" node integrates with the Mindz API, allowing users to interact with various Mindz resources such as bundles, courses, users, teams, subscriptions, emails, and payment-related entities. Specifically, the Bundle - Get Price operation retrieves pricing information for a specified bundle by its ID.
This node is beneficial in scenarios where you need to programmatically fetch bundle pricing details from Mindz within an automated workflow. For example, you might use it to:
- Display current bundle prices in a custom dashboard.
- Validate bundle prices before processing orders or subscriptions.
- Synchronize pricing data between Mindz and other systems.
Properties
| Name | Meaning |
|---|---|
| Bundle ID | The unique identifier of the bundle for which the price information is requested. |
The Bundle ID property is required and must be provided as a string representing the target bundle.
Output
The node outputs JSON data containing the price details of the specified bundle. The exact structure depends on the Mindz API response but typically includes fields such as:
- Bundle identifier
- Pricing amount(s)
- Currency
- Any applicable discounts or special pricing conditions
No binary data output is indicated for this operation.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based API key credential.
- The node depends on proper configuration of this API authentication within n8n.
- Network access to the Mindz API endpoint is necessary.
Troubleshooting
- Missing or invalid Bundle ID: Ensure the Bundle ID is correctly provided and corresponds to an existing bundle in Mindz.
- Authentication errors: Verify that the API credentials are valid and have sufficient permissions to access bundle pricing.
- API connectivity issues: Check network connectivity and Mindz API service status.
- Unexpected API responses: Confirm that the Mindz API has not changed its response format; update the node if necessary.
Common error messages may include authentication failures, resource not found (invalid Bundle ID), or rate limiting errors. Resolving these typically involves checking credentials, input parameters, and API usage limits.
Links and References
- Mindz API Documentation (hypothetical link, replace with actual if available)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/
- n8n Node Development Documentation: https://docs.n8n.io/integrations/creating-nodes/