Chatwork icon

Chatwork

Retrieve data from Chatwork API.

Overview

This node integrates with the Chatwork API to retrieve information about chatrooms and their members. Specifically, for the "Rooms" resource and the "Get members" operation, it fetches the list of members in a specified chatroom by its ID.

This node is useful when you want to programmatically access the membership details of a chatroom, such as retrieving all users who belong to a particular room. Practical examples include:

  • Synchronizing chatroom members with another system.
  • Auditing or reporting on chatroom participation.
  • Automating notifications or actions based on member lists.

Properties

Name Meaning
Chatroom ID The unique numeric identifier of the chatroom whose members you want to retrieve. Example: 92107487

Output

The output JSON contains the data returned by the Chatwork API endpoint for room members. This typically includes an array of member objects, each representing a user in the chatroom with details such as user ID, name, role (admin/member/readonly), and other relevant metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Chatwork API using a valid API authentication token configured in n8n credentials.
  • The node makes HTTP requests to Chatwork's REST API endpoints.
  • No additional external services are required beyond Chatwork itself.

Troubleshooting

  • Common issues:

    • Invalid or missing Chatroom ID: Ensure the Chatroom ID is correct and corresponds to an existing room.
    • Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
    • Network or API downtime: Check network connectivity and Chatwork service status.
  • Error messages:

    • "operation is not supported." — This indicates an unsupported operation was requested; ensure "Get members" is selected under the "Rooms" resource.
    • "resource is not supported." — Indicates an invalid resource selection; confirm "Rooms" is chosen.
    • API errors from Chatwork (e.g., 401 Unauthorized, 404 Not Found) will be passed through; check API credentials and resource identifiers accordingly.

Links and References

Discussion