n8n-nodes-chatwork-api
v1.0.2
Published
Provides n8n nodes to retrieve data from Chatwork API.
Downloads
117
Maintainers
Readme
n8n-nodes-chatwork-api

This is a n8n community node. It lets you use ChatWork in your n8n workflows.
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations/Apis
/me- Used to access your account information- [x]
GET /me- Get your account information
- [x]
/my- Used to access your data on the account.- [x]
GET /my/status- Get the number of: unread messages, unread To messages, and unfinished tasks. - [x]
GET /my/task- Get the list of all unfinished tasks.
- [x]
/contacts- Used to access the list of your contacts- [x]
GET /contacts- Get the list of your contacts
- [x]
/rooms- Used to access information such as messages, members, files, and tasks associated to a specific conversation.- [x]
GET /rooms- Get the list of all chats on your account - [x]
POST /rooms- Create a new group chat - [x]
GET /rooms/{room_id}- Get chat name, icon, and Type (my, direct, or group) - [x]
PUT /rooms/{room_id}- Change the title and icon type of the specified chat - [x]
DELETE /rooms/{room_id}- Leave/Delete a group chat - [x]
GET /rooms/{room_id}/members- Get the list of all chat members associated with the specified chat - [x]
PUT /rooms/{room_id}/members- Change associated members of group chat at once - [x]
GET /rooms/{room_id}/messages- Get all messages associated with the specified chat - [x]
POST /rooms/{room_id}/messages- Add new message to the chat - [x]
GET /rooms/{room_id}/messages/{message_id}- Get information about the specified message - [x]
PUT /rooms/{room_id}/messages/{message_id}- Update the specified message - [x]
DELETE /rooms/{room_id}/messages/{message_id}- Delete the specified message - [x]
GET /rooms/{room_id}/tasks- Get the list of tasks associated with the specified chat - [x]
POST /rooms/{room_id}/tasks- Add a new task to the chat - [x]
GET /rooms/{room_id}/tasks/{task_id}- Get information about the specified task - [x]
GET /rooms/{room_id}/files- Get the list of files associated with the specified chat - [x]
GET /rooms/{room_id}/files/{file_id}- Get information about the specified file
- [x]
