Actions16
- Rooms Actions
- Create a new group chat
- Leave/Delete a group chat
- Get detail
- Update info
- Get members
- Change associated members
- Get messages
- Send message
- Get message detail
- Update the specified message
- Delete message
- Get tasks
- Get task detail
- Add a new task to the chat
- Get the list of files
- Get information about the specified file
Overview
This node interacts with the Chatwork API to retrieve detailed information about a specific message within a chatroom. It is useful when you need to fetch the content and metadata of a particular message by specifying both the chatroom and message identifiers.
Common scenarios include:
- Reviewing or processing a single message's details for auditing or logging.
- Fetching message content to trigger further automation based on its contents.
- Integrating Chatwork messages into other systems by extracting message data.
Example: Given a chatroom ID and a message ID, the node will return the full details of that message from the specified chatroom.
Properties
| Name | Meaning |
|---|---|
| Chatroom ID | The unique numeric identifier of the chatroom where the message resides. |
| Message ID | The unique numeric identifier of the specific message whose details are to be retrieved. |
Output
The output is a JSON object representing the detailed information of the requested message. This typically includes fields such as message body, sender info, timestamps, and any associated metadata provided by the Chatwork API.
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.
- Network access to Chatwork API endpoints must be available.
Troubleshooting
- Error: Operation not supported — Ensure that the operation name is correctly set to "Get message detail" and that the resource is "Rooms".
- Error: Resource not supported — Verify that the resource parameter is set to "Rooms".
- Invalid or missing Chatroom ID or Message ID — Both IDs are required and must be valid numbers; check input values.
- API request failures — Could be due to invalid API credentials, network issues, or insufficient permissions. Confirm API key validity and connectivity.
- Empty or unexpected response — Check if the message ID exists in the specified chatroom and that the message has not been deleted.
Links and References
- Chatwork API Documentation - Messages (official API docs for message details)
