Developer docs

Chatwork integration

Chatwork is a team communication platform featuring group chats, file sharing,…

Updated June 2026 30 actions available

Provider
chatwork
Category
Other
Setup
Setup in progress — check back soon
Actions
30 available

Quick start

Call Chatwork from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Chatwork's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "CHATWORK_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

Chatwork is newly synced from Composio — our background bootstrap job hasn't created the auth config row yet. This usually takes a few minutes; if it's still pending after an hour, please reach out.

Available actions

30 actions exposed via the Chatwork integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 30 actions
  • CHATWORK_GET_MY_TASKS
  • CHATWORK_GET_ROOM
  • CHATWORK_GET_ROOM_FILES
  • CHATWORK_GET_ROOM_LINK
  • CHATWORK_GET_ROOM_MEMBERS
  • CHATWORK_GET_ROOM_MESSAGES2
  • CHATWORK_GET_ROOMS2
  • CHATWORK_GET_ROOM_TASKS
  • CHATWORK_GET_TASK
  • CHATWORK_MARK_MESSAGES_READ
  • CHATWORK_MARK_MESSAGES_UNREAD
  • CHATWORK_POST_MESSAGE
  • CHATWORK_UPDATE_MESSAGE
  • CHATWORK_UPDATE_ROOM
  • CHATWORK_UPDATE_ROOM_LINK
  • CHATWORK_UPDATE_ROOM_MEMBERS
  • CHATWORK_UPDATE_TASK_STATUS
  • CHATWORK_UPLOAD_FILE

Build with Chatwork

Open OverSkill, describe what you want to build, and reference Chatwork in your prompt — the AI will wire up the integration automatically.