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 Account "Get" operation node retrieves detailed information about a specific MindzPay account using its unique Account ID. This node is useful when you need to fetch and display account details such as balance, status, or other metadata associated with a MindzPay account within an automated workflow.
Practical examples include:
- Automatically retrieving account details before processing payments.
- Verifying account status during subscription management.
- Integrating account data into reporting or notification systems.
Properties
| Name | Meaning |
|---|---|
| Account ID | The unique identifier of the MindzPay account to retrieve. This is a required string input. |
Output
The node outputs JSON data containing the details of the requested MindzPay account. The structure typically includes fields representing the account's properties such as identifiers, balances, statuses, and related metadata as provided by the Mindz API.
If the MindzPay account includes any binary data (e.g., documents or images), it would be included in the binary output field; however, based on the provided code and context, this operation primarily returns JSON data.
Dependencies
- Requires an active connection to the Mindz API authenticated via an OAuth2 API key credential.
- The node depends on the Mindz API service being available and accessible.
- Proper configuration of the OAuth2 credentials in n8n is necessary for successful API calls.
Troubleshooting
Common Issues:
- Invalid or missing Account ID: Ensure the Account ID is correctly provided and exists in the Mindz system.
- Authentication errors: Verify that the OAuth2 credentials are valid and have not expired.
- Network or API downtime: Check connectivity and Mindz API status.
Error Messages:
- "Account not found": The specified Account ID does not exist. Double-check the ID.
- "Authentication failed": OAuth2 token invalid or missing. Re-authenticate the credentials.
- "API request failed": Could indicate network issues or API errors. Retry after some time or check logs.
Links and References
- Mindz API Documentation (general reference): https://mindz.example.com/api-docs (replace with actual URL)
- n8n OAuth2 Credential Setup Guide: https://docs.n8n.io/credentials/oauth2/