# Chatwork

Chatwork is a team communication platform featuring group chats, file sharing, and task management, aiming to enhance collaboration and productivity for businesses

- **Category:** team chat
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 30
- **Triggers:** 0
- **Slug:** `CHATWORK`
- **Version:** 20260312_00

## Tools

### Create Chatwork Room

**Slug:** `CHATWORK_CREATE_ROOM`

Tool to create a new group chat room in Chatwork. Use when you need to set up a new collaborative space for team communication. This action allows you to specify room administrators, members with different permission levels (admin, regular, read-only), and optionally configure invitation links with custom access controls.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `link` | integer | No | Whether to create an invitation link for the room. Set to 1 to create a link, 0 to not create one. Default is 0. |
| `name` | string | Yes | Name of the chat room. Must be between 1 and 255 characters. |
| `link_code` | string | No | Custom code for the invitation link. If not specified, a random code will be generated when link is set to 1. |
| `description` | string | No | Description or overview of the chat room. Provides context about the room's purpose. |
| `icon_preset` | string ("group" | "check" | "document" | "meeting" | "event" | "project" | "business" | "study" | "security" | "star" | "idea" | "heart" | "magcup" | "beer" | "music" | "sports" | "travel") | No | Enum for room icon presets. |
| `members_admin_ids` | string | Yes | Comma-separated list of account IDs to be designated as administrators of the room. At least one admin ID is required. |
| `members_member_ids` | string | No | Comma-separated list of account IDs to be added as regular members of the room. These members can participate in conversations but have limited administrative rights. |
| `link_need_acceptance` | integer | No | Whether joining via the invitation link requires administrator approval. Set to 1 to require approval, 0 to allow direct joining. Default is 1. |
| `members_readonly_ids` | string | No | Comma-separated list of account IDs to be added as read-only members. These members can view the room content but cannot post messages. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Room Invitation Link

**Slug:** `CHATWORK_CREATE_ROOM_LINK`

Tool to create an invitation link for a Chatwork room. Returns a URL that can be shared for others to join the room. Use when you need to generate a shareable link for room access. Returns 400 error if a link already exists for the room.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | Yes | Unique alphanumeric code for the invitation link. This will be part of the invitation URL. Must contain only letters and numbers (no hyphens or special characters). |
| `room_id` | integer | Yes | The ID of the chat room to create an invitation link for |
| `description` | string | No | Optional description for the invitation link explaining its purpose |
| `need_acceptance` | integer | No | Whether administrator approval is required for joining via this link. 1 = approval required (default), 0 = no approval required |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Create Task in Chatwork Room

**Slug:** `CHATWORK_CREATE_TASK`

Tool to create a new task in a Chatwork room. Use when you need to assign tasks to users in a specific chat room. Requires the task description, assignee account IDs, and optionally a deadline timestamp.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `body` | string | Yes | The content/description of the task |
| `limit` | integer | No | Unix timestamp (in seconds) indicating the task deadline. If not specified, the task will have no deadline |
| `to_ids` | string | Yes | Comma-separated list of account IDs to assign the task to. Multiple users can be assigned by separating IDs with commas (e.g., '1,3,6') |
| `room_id` | integer | Yes | The ID of the chat room where the task will be created |
| `limit_type` | string | No | Type of the limit. Currently only 'time' is supported. This field is optional and defaults to 'time' when a limit is specified |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Message

**Slug:** `CHATWORK_DELETE_MESSAGE`

This tool allows you to delete a specific message from a Chatwork room by calling the DELETE endpoint at https://api.chatwork.com/v2/rooms/{room_id}/messages/{message_id}. It requires authentication using a Chatwork API token provided in the X-ChatWorkToken header, and the necessary permissions to delete messages in the specified room.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | string | Yes | The ID of the chat room containing the message to delete |
| `message_id` | string | Yes | The ID of the message to delete |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete or Leave Chatwork Room

**Slug:** `CHATWORK_DELETE_ROOM`

Tool to leave or delete a Chatwork room. When leaving, your tasks and files in the room are deleted. When deleting, all messages, tasks, and files in the room are permanently deleted. Use with caution as deletion is irreversible.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | string | Yes | The ID of the chat room to leave or delete |
| `action_type` | string ("leave" | "delete") | Yes | Type of action to perform. 'leave' to exit the room (your tasks and files are deleted), or 'delete' to permanently remove the entire room with all messages, tasks, and files. Requires appropriate permissions. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Delete Room Link

**Slug:** `CHATWORK_DELETE_ROOM_LINK`

Delete the invitation link for a Chatwork room. Use when you need to disable or remove the invite link for a chat room. Returns a 400 error if the invitation link is already disabled.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The unique numeric identifier of the Chatwork room to delete the invitation link from |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Chatwork Contacts

**Slug:** `CHATWORK_GET_CHATWORK_CONTACTS`

This tool retrieves a list of all contacts from Chatwork. It is a fundamental tool that fetches all contact information such as account_id, room_id, name, chatwork_id, organization details, department, and avatar image URL, without needing additional parameters beyond authentication.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Chatwork File Information

**Slug:** `CHATWORK_GET_FILE2`

Tool to get information about a specific file in a chat room. Use when you need to retrieve file metadata including filename, size, upload time, and optionally a download URL.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file_id` | integer | Yes | The ID of the file to retrieve |
| `room_id` | integer | Yes | The ID of the chat room containing the file |
| `create_download_url` | integer | No | Whether to create a download URL. Set to 1 to create a download URL (valid for 30 seconds only). Defaults to 0. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Incoming Contact Requests

**Slug:** `CHATWORK_GET_INCOMING_REQUESTS`

Tool to retrieve pending contact approval requests received by the authenticated user. Use when you need to check incoming connection requests from other users (up to 100 items).

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get My Chatwork Profile

**Slug:** `CHATWORK_GET_ME`

Tool to retrieve the authenticated user's profile information including account details, organization, contact information, and avatar URL. Use when you need to get the current user's complete profile data.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Message

**Slug:** `CHATWORK_GET_MESSAGE`

Tool to retrieve information about a specific message in a Chatwork room. Use when you need to get details about a particular message, including its content, sender, and timestamps.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | string | Yes | The ID of the chat room containing the message |
| `message_id` | string | Yes | The ID of the message to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get My Chatwork Status

**Slug:** `CHATWORK_GET_MY_STATUS`

This tool retrieves the current status of the authenticated user, including unread message counts and task status. It provides a quick overview of unread messages, mentions, and tasks, making it valuable for monitoring ChatWork activity and building automation workflows.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get My Chatwork Tasks

**Slug:** `CHATWORK_GET_MY_TASKS`

Tool to retrieve the authenticated user's task list from Chatwork (up to 100 items). Use when you need to fetch tasks assigned to the user, with optional filtering by assigner or completion status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `status` | string ("open" | "done") | No | Enum for task completion status. |
| `assigned_by_account_id` | integer | No | Filter tasks by the account ID of the assigner. If specified, only returns tasks assigned by this account. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Chatwork Room

**Slug:** `CHATWORK_GET_ROOM`

Retrieves detailed information about a specific Chatwork room using the API endpoint GET /rooms/{room_id}. Returns comprehensive room details including name, icon, type, role, message/file/task counts, and other metadata. Useful for obtaining room-specific information when you already have the room ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The unique numeric identifier of the Chatwork room to retrieve. Can be obtained from the Get Rooms action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Room Files

**Slug:** `CHATWORK_GET_ROOM_FILES`

Tool to get list of files in a chat room (up to 100 files). Use when you need to retrieve file information from a Chatwork room, optionally filtered by uploader.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The ID of the chat room to retrieve files from |
| `account_id` | integer | No | Filter files by the account ID that uploaded them. If not specified, returns files from all users. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Room Invitation Link

**Slug:** `CHATWORK_GET_ROOM_LINK`

Retrieves the invitation link for a specified Chatwork room using the API endpoint GET /rooms/{room_id}/link. Returns link information including the URL, public/private status, whether admin acceptance is needed, and a description. Useful for sharing room access and managing room invitations.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The unique numeric identifier of the Chatwork room to get the invitation link for. Can be obtained from the Get Rooms action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Room Members

**Slug:** `CHATWORK_GET_ROOM_MEMBERS`

Retrieves a complete list of all members in a specified Chatwork room using the API endpoint GET /rooms/{room_id}/members. Returns detailed member information including account IDs, roles (admin/member/readonly), names, Chatwork IDs, organization details, departments, and avatar URLs. Useful for managing room permissions, generating member lists, and understanding room composition.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The unique numeric identifier of the Chatwork room to retrieve members from. Can be obtained from the Get Rooms action. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Room Messages V2

**Slug:** `CHATWORK_GET_ROOM_MESSAGES2`

Tool to retrieve messages from a Chatwork room (up to 100 messages). Use when you need to fetch chat history from a specific room. By default (force=0), returns only messages since the last retrieval. Set force=1 to get the latest 100 messages.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `force` | integer | No | When set to 0 (default), returns only new messages since the last retrieval (incremental). When set to 1, forces retrieval of the latest 100 messages regardless of read status. |
| `room_id` | integer | Yes | The ID of the chat room to retrieve messages from |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Chatwork Rooms

**Slug:** `CHATWORK_GET_ROOMS2`

Tool to retrieve a list of all chat rooms the authenticated user belongs to. Use when you need to get information about all accessible rooms including group chats, direct messages, and personal chats.

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Room Tasks

**Slug:** `CHATWORK_GET_ROOM_TASKS`

Retrieves a list of tasks from a Chatwork room. Returns up to 100 tasks. Use optional filters to narrow results by assignee, assigner, or completion status. Returns an empty list if there are no matching tasks.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `status` | string ("open" | "done") | No | Enum for task completion status |
| `room_id` | integer | Yes | The ID of the chat room to retrieve tasks from |
| `account_id` | integer | No | Filter tasks by assignee account ID. If specified, only tasks assigned to this account are returned. |
| `assigned_by_account_id` | integer | No | Filter tasks by assigner account ID. If specified, only tasks assigned by this account are returned. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Get Task

**Slug:** `CHATWORK_GET_TASK`

Retrieves detailed information about a specific task in a Chatwork room using the API endpoint GET /rooms/{room_id}/tasks/{task_id}. Returns task details including assignee, creator, body, deadline, and completion status. Use this when you need to check the current state of a specific task or retrieve its full details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The unique numeric identifier of the Chatwork room containing the task. Can be obtained from the Get Rooms action. |
| `task_id` | integer | Yes | The unique numeric identifier of the task to retrieve |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mark Messages as Read

**Slug:** `CHATWORK_MARK_MESSAGES_READ`

Tool to mark messages as read in a Chatwork room. Use when you need to update the read status of messages up to a specific message ID. All messages up to and including the specified message will be marked as read.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The ID of the chat room where messages should be marked as read |
| `message_id` | string | Yes | The ID of the message to mark as read. All messages up to and including this message will be marked as read. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Mark Messages as Unread

**Slug:** `CHATWORK_MARK_MESSAGES_UNREAD`

Tool to mark messages as unread in a Chatwork room. Use when you need to mark a specific message and all subsequent messages as unread. This is useful for re-flagging important messages that need attention.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The ID of the chat room containing the message to mark as unread |
| `message_id` | string | Yes | The ID of the message to mark as unread. All messages after this message will be marked as unread. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Post Message

**Slug:** `CHATWORK_POST_MESSAGE`

Tool to post a new message to a Chatwork room. Use when you need to send a message to a specific chat room. Supports marking the message as unread for the sender via the self_unread parameter.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `body` | string | Yes | The content of the message to post. Maximum length is 65535 characters, minimum length is 1 character. |
| `room_id` | string | Yes | The ID of the chat room to post the message to |
| `self_unread` | integer | No | Whether to mark the posted message as unread for yourself. Specify 0 (default) for read, 1 for unread. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Message

**Slug:** `CHATWORK_UPDATE_MESSAGE`

Tool to update an existing message in a Chatwork room. Use when you need to modify the content of a previously sent message. Requires appropriate permissions to edit messages in the room.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `body` | string | Yes | The new content for the message |
| `room_id` | string | Yes | The ID of the chat room containing the message to update |
| `message_id` | string | Yes | The ID of the message to update |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Chatwork Room

**Slug:** `CHATWORK_UPDATE_ROOM`

Tool to update chat room information (name, icon, description). Use when you need to modify existing chat room settings. At least one field (name, icon_preset, or description) must be provided.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | New name for the chat room |
| `room_id` | integer | Yes | Unique identifier for the room to update |
| `description` | string | No | New description/summary for the chat room |
| `icon_preset` | string ("group" | "check" | "document" | "meeting" | "event" | "project" | "business" | "study" | "security" | "star" | "idea" | "heart" | "magcup" | "beer" | "music" | "sports" | "travel") | No | Enum for available chat room icon presets. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Room Invitation Link

**Slug:** `CHATWORK_UPDATE_ROOM_LINK`

Tool to update the invitation link settings for a Chatwork room. Use when you need to modify the link code, description, or acceptance settings for a room's invitation link. Returns 400 if the invitation link feature is disabled for the room.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `code` | string | No | Unique code for the invitation link (e.g., 'unique-link-name') |
| `room_id` | string | Yes | The ID of the chat room whose invitation link will be updated |
| `description` | string | No | Description text for the invitation link |
| `need_acceptance` | integer | No | Whether admin approval is required for joining (1 = required, 0 = not required). Defaults to 1 if not specified. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Room Members

**Slug:** `CHATWORK_UPDATE_ROOM_MEMBERS`

Updates the complete member list of a Chatwork room with bulk assignment of member roles (admin, member, readonly). This is a bulk update operation that replaces the entire member list - any existing members not included in the request will be removed from the room. At least one admin must be specified. Use this when reorganizing room permissions or changing multiple member roles at once.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `room_id` | integer | Yes | The unique numeric identifier of the Chatwork room to update members in. Can be obtained from the Get Rooms action. |
| `members_admin_ids` | string | Yes | Comma-separated list of account IDs to assign admin privileges. At least one admin is required. Example: '123,456,789' |
| `members_member_ids` | string | No | Comma-separated list of account IDs to assign member privileges. Members can read and write messages. Example: '21,344' |
| `members_readonly_ids` | string | No | Comma-separated list of account IDs to assign read-only privileges. Read-only members can only view messages. Example: '15,103' |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Update Task Status

**Slug:** `CHATWORK_UPDATE_TASK_STATUS`

Tool to update the completion status of a task in a Chatwork room. Use when you need to mark a task as done or reopen a completed task. Requires appropriate permissions to modify tasks in the specified room.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `status` | string ("open" | "done") | Yes | The completion status to set for the task. Use 'done' to mark as completed, 'open' to mark as incomplete. |
| `room_id` | integer | Yes | The ID of the chat room containing the task |
| `task_id` | integer | Yes | The ID of the task to update |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |

### Upload File to Chatwork Room

**Slug:** `CHATWORK_UPLOAD_FILE`

This tool allows users to upload files to a specific Chatwork room. It enables file sharing functionality within the Chatwork platform by providing an endpoint to upload files (along with an optional message) to a given room.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `file` | object | Yes | File to upload. |
| `message` | string | No | Optional message to accompany the file upload |
| `room_id` | string | Yes | The ID of the room where the file will be uploaded |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
