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
The MindzPay Payment node's List operation retrieves a list of payment records associated with a specified MindzPay account. This node is useful for scenarios where you want to fetch and analyze payment transactions, such as generating reports, monitoring payment statuses, or integrating payment data into other workflows.
For example, you might use this node to:
- Retrieve recent payments made to your MindzPay account.
- Filter payments by search terms or sort them by date or amount.
- Paginate through large sets of payment data using limit and offset parameters.
Properties
| Name | Meaning |
|---|---|
| Account ID | The unique identifier of the MindzPay account whose payments you want to list. |
| Limit | Maximum number of payment records to return (minimum 1). |
| Offset | Number of payment records to skip before starting to collect the result set (for paging). |
| Sort By | Field to sort the results by. Options: ID, Date, Price Total, Status |
| Sort Direction | Direction to sort the results. Options: Ascending, Descending |
| Search | A search term to filter the payment results (e.g., by payer name, description, etc.) |
Output
The output contains a JSON array of payment objects representing individual payment records retrieved from the MindzPay account. Each object typically includes details such as payment ID, date, total price, status, and other relevant payment metadata.
If the node supports binary data output (not indicated here), it would represent attachments or documents related to payments, but this operation primarily returns structured JSON data.
Dependencies
- Requires an API key credential for authenticating with the Mindz API.
- The node depends on the Mindz OAuth2 authentication setup within n8n.
- Network access to the Mindz API endpoint is necessary.
Troubleshooting
- Missing or invalid Account ID: Ensure the Account ID parameter is correctly provided and corresponds to an existing MindzPay account.
- API authentication errors: Verify that the API credentials are valid and have sufficient permissions.
- Pagination issues: If no results appear, check the
limitandoffsetvalues to ensure they are within valid ranges. - Sorting or filtering not working: Confirm that the
sortBy,sortDirection, andsearchparameters are correctly set according to the allowed options.
Links and References
- Mindz API Documentation (example placeholder link)
- n8n OAuth2 Credential Setup
- MindzPay Payment API Reference (example placeholder link)