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 "User List" operation in this Mindz node allows you to retrieve a list of users from the Mindz platform. This is useful for scenarios where you need to fetch user data in bulk, such as generating reports, syncing user information with other systems, or filtering users based on specific criteria.
For example, you might use this node to:
- Get the first 50 users who joined recently.
- Retrieve users sorted by their ID in descending order.
- Search for users matching a particular keyword.
Properties
| Name | Meaning |
|---|---|
| Limit | Max number of user results to return (minimum 1). |
| Offset | Number of user results to skip before starting to collect the output. |
| Sort By | Field to sort the user results by. Options: "Date Joined", "ID". |
| Sort Direction | Direction to sort the results. Options: "Ascending", "Descending". |
| Search | Search term to filter users by matching text. |
Output
The node outputs an array of user objects in the json field of each item. Each object represents a user and contains user-related data fields as returned by the Mindz API. The exact structure depends on the API response but typically includes user identifiers, names, join dates, and other relevant user attributes.
This node does not output binary data.
Dependencies
- Requires an API authentication token configured via OAuth2 credentials to connect to the Mindz API.
- The node depends on the Mindz API service being available and accessible.
Troubleshooting
- Empty results: If no users are returned, check that your search term and offset/limit values are correct and that there are users matching your criteria.
- Authentication errors: Ensure your API credentials are valid and have the necessary permissions.
- Sorting issues: Verify that the "Sort By" and "Sort Direction" options are set correctly; invalid combinations may cause unexpected ordering.
- API rate limits: If you encounter rate limit errors, consider reducing the frequency of requests or increasing the offset/limit parameters to paginate results properly.
Links and References
- Mindz API documentation (general reference for user endpoints)
- n8n OAuth2 credential setup guide
- Pagination and sorting best practices in REST APIs