MsgCore icon

MsgCore

Universal messaging gateway - send messages across multiple platforms

Overview

The "Members: List" operation in this node allows you to retrieve a list of all members associated with a specific project. This is useful for managing and auditing project team members, understanding who has access, and their roles within the project.

Typical use cases include:

  • Displaying all users who have access to a project.
  • Auditing member roles and permissions.
  • Integrating with other systems that require knowledge of project membership.

For example, you might use this operation to fetch all members before sending notifications or assigning tasks based on user roles.

Properties

Name Meaning
Project The identifier of the project to list members from.

Output

The output will be a JSON array containing member objects representing each member of the specified project. Each member object typically includes details such as user ID, email, role, and other relevant metadata about the member's association with the project.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential configured in n8n to authenticate requests against the messaging gateway API.
  • The node makes HTTP GET requests to the endpoint /api/v1/projects/{project}/members where {project} is the provided project identifier.

Troubleshooting

  • Common issues:

    • Invalid or missing project identifier: Ensure the "Project" property is correctly set to a valid project ID.
    • Authentication errors: Verify that the API key credential is properly configured and has sufficient permissions to list project members.
    • Network or API endpoint errors: Check connectivity and that the API base URL is correctly set in credentials.
  • Error messages:

    • Unauthorized or 401 errors indicate invalid or missing authentication credentials.
    • 404 errors may indicate the specified project does not exist.
    • 500 or server errors suggest issues on the API provider side; retry later or contact support.

Links and References

Discussion