ChatWoot icon

ChatWoot

Interact with ChatWoot API

Actions113

Overview

This node operation retrieves the list of members belonging to a specific team within an account. It is useful in scenarios where you need to manage or display team compositions, such as showing all users assigned to a team for collaboration, reporting, or administrative purposes.

For example, if you have a customer support platform with multiple teams handling different regions or product lines, this operation allows you to fetch all members of a particular team to assign tasks or monitor team activity.

Properties

Name Meaning
Account Id The numeric ID of the account to which the team belongs.
Team Id The numeric ID of the team whose members you want to retrieve.

Output

The output will be a JSON array containing objects that represent each team member. Each object typically includes details such as the member's user ID, name, email, role within the team, and other relevant metadata depending on the API response structure.

If the node supports binary data output (not indicated here), it would generally relate to profile pictures or attachments associated with team members, but this is not evident from the provided code.

Dependencies

  • Requires an API key credential for authenticating requests to the ChatWoot API.
  • The base URL for the API must be configured in the node credentials.
  • The node depends on the @devlikeapro/n8n-openapi-node package for building properties and making API calls.
  • The OpenAPI specification (openapi.json) defines the available endpoints and parameters.

Troubleshooting

  • Missing or invalid Account Id or Team Id: Ensure both IDs are provided and valid numbers; otherwise, the API call will fail.
  • Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions to access team information.
  • Network issues or incorrect base URL: Confirm the base URL in credentials matches the ChatWoot instance URL.
  • Empty or unexpected responses: Check if the team actually exists and has members; also verify API version compatibility.

Links and References

Discussion