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 MindzPay Subscription "Get" operation node retrieves detailed information about a specific subscription within a MindzPay account. This node is useful when you need to fetch the current status, details, or metadata of a particular subscription by providing its unique identifier along with the associated account ID.
Common scenarios:
- Checking the status or details of a user's subscription for billing or support purposes.
- Integrating subscription data into dashboards or reports.
- Validating subscription existence before performing further operations like cancellation or suspension.
Example use case:
You have a system that manages user subscriptions and want to display subscription details in your CRM whenever a customer contacts support. Using this node, you can fetch the subscription info by passing the account and subscription IDs.
Properties
| Name | Meaning |
|---|---|
| Account ID | The unique identifier of the MindzPay account under which the subscription exists. |
| Subscription ID | The unique identifier of the subscription to retrieve detailed information about it. |
Output
The node outputs JSON data representing the subscription details retrieved from the MindzPay API. This typically includes fields such as subscription status, start and end dates, plan details, payment information, and any other metadata related to the subscription.
If the node supports binary data output (not indicated here), it would represent attachments or documents related to the subscription, but this is not applicable for this operation.
Dependencies
- Requires an active connection to the Mindz API via an OAuth2-based API key credential configured in n8n.
- The node depends on the MindzPay API service being available and accessible.
- Proper permissions on the MindzPay account are necessary to retrieve subscription details.
Troubleshooting
- Missing or invalid Account ID / Subscription ID: Ensure both IDs are correctly provided and correspond to existing entities in MindzPay.
- Authentication errors: Verify that the API credentials are valid and have not expired.
- API connectivity issues: Check network access and MindzPay service status.
- Permission denied errors: Confirm that the authenticated user has rights to access the specified subscription.
- Unexpected empty or malformed response: Validate that the subscription ID is correct and the subscription is active or exists.
Links and References
- MindzPay API Documentation (hypothetical link as no direct URL was provided)
- OAuth2 Authentication setup in n8n: https://docs.n8n.io/credentials/oauth2/
- n8n Node Development Guide: https://docs.n8n.io/integrations/creating-nodes/