Mindz icon

Mindz

Interact with Mindz API

Actions115

Overview

The "Team - List" operation in this node allows users to retrieve a list of team members from the Mindz API. It supports filtering, sorting, and pagination, making it useful for scenarios where you need to display or process subsets of team data efficiently. For example, you might use this operation to fetch the first 50 team members sorted by their join date or to search for team members matching a specific keyword.

Properties

Name Meaning
Limit Max number of results to return (minimum 1).
Offset Number of results to skip (used for pagination).
Sort By Field to sort results by. Options: Date Joined, Email, First Name, ID, Last Name.
Sort Direction Direction to sort results by. Options: Ascending, Descending.
Search Search term to filter results by matching text.

Output

The output is a JSON array containing the list of team members retrieved from the API according to the specified parameters. Each item in the array represents a team member with their associated details as provided by the Mindz API. The node does not explicitly handle binary data for this operation.

Dependencies

  • Requires an active connection to the Mindz API using an OAuth2-based API key credential.
  • The node depends on the Mindz API being accessible and properly authenticated.
  • No additional environment variables are required beyond the configured API credentials.

Troubleshooting

  • Empty Results: If no team members are returned, verify that the search term and offset/limit values are correct and that the account has team members matching those criteria.
  • Authentication Errors: Ensure the API key credential is valid and has sufficient permissions to access team data.
  • Invalid Parameter Values: Setting Limit below 1 or providing unsupported values for sorting fields may cause errors; adhere to the allowed options.
  • API Rate Limits: Frequent requests may hit API rate limits; consider adding delays or reducing request frequency.

Links and References

  • Mindz API Documentation (general reference for endpoints and parameters)
  • OAuth2 Authentication Guide for Mindz API
  • n8n Documentation on Creating Custom Nodes and Using Credentials

Discussion