Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The MindzPay Account List operation allows users to retrieve a paginated list of MindzPay accounts from the Mindz API. This node is useful for scenarios where you need to fetch multiple account records, such as generating reports, syncing account data with other systems, or displaying account lists in dashboards.

For example, you might use this node to:

  • Retrieve the first 50 MindzPay accounts sorted by creation date.
  • Search for accounts matching a specific term and paginate through results.
  • Sort accounts by name in descending order to find recent or specific accounts quickly.

Properties

Name Meaning
Limit Max number of results to return (minimum 1). Controls page size of returned accounts.
Offset Number of results to skip. Useful for pagination to fetch subsequent pages of accounts.
Sort By Field to sort results by. Options: Created At, ID, Name.
Sort Direction Direction to sort results by. Options: Ascending, Descending.
Search Search term to filter results. Filters accounts based on matching text criteria.

Output

The node outputs an array of JSON objects representing MindzPay accounts. Each object contains the details of a single account as returned by the Mindz API. The exact structure depends on the API response but typically includes fields like account ID, name, creation date, and other relevant account metadata.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active connection to the Mindz API using an OAuth2-based API key credential configured in n8n.
  • The node depends on the Mindz API being accessible and the credentials having sufficient permissions to list MindzPay accounts.

Troubleshooting

  • Empty results: If no accounts are returned, verify that the search term is correct and that the offset and limit parameters are set appropriately.
  • Authentication errors: Ensure the API key credential is valid and has not expired.
  • API rate limits: If requests fail due to rate limiting, consider adding delays or reducing request frequency.
  • Invalid parameter values: Make sure limit is at least 1 and sorting options are valid; otherwise, the API may reject the request.

Links and References

  • Mindz API Documentation (general reference for endpoints and parameters)
  • OAuth2 Authentication setup in n8n (for configuring API credentials)

Discussion