Developer docs

Slack integration

Team communication and notifications

Updated June 2026 154 actions available

Provider
slack
Category
Communication
Setup
See setup section below
Actions
154 available

Quick start

Call Slack from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Slack'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(
  "SLACK_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

Setup details for Slack aren't published yet. If you need this integration in production, contact the OverSkill team and we'll prioritize it.

Available actions

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

Show all 154 actions
  • SLACK_CHAT_POST_MESSAGE
  • SLACK_CLOSE_DM
  • SLACK_CONVERT_CHANNEL_TO_PRIVATE
  • SLACK_CREATE_A_REMINDER
  • SLACK_CREATE_CANVAS
  • SLACK_CREATE_CHANNEL
  • SLACK_CREATE_CHANNEL_BASED_CONVERSATION
  • SLACK_CREATE_ENTERPRISE_TEAM
  • SLACK_CREATE_USER_GROUP
  • SLACK_CUSTOMIZE_URL_UNFURL
  • SLACK_DELETE_CANVAS
  • SLACK_DELETE_CHANNEL
  • SLACK_DELETE_FILE
  • SLACK_DELETE_FILE_COMMENT
  • SLACK_DELETE_REMINDER
  • SLACK_DELETES_A_MESSAGE_FROM_A_CHAT
  • SLACK_DELETE_SCHEDULED_MESSAGE
  • SLACK_DELETE_USER_PROFILE_PHOTO
  • SLACK_DISABLE_USER_GROUP
  • SLACK_DOWNLOAD_SLACK_FILE
  • SLACK_EDIT_CANVAS
  • SLACK_ENABLE_PUBLIC_SHARING_OF_A_FILE
  • SLACK_ENABLE_USER_GROUP
  • SLACK_END_CALL
  • SLACK_END_DND
  • SLACK_END_SNOOZE
  • SLACK_FETCH_CONVERSATION_HISTORY
  • SLACK_FETCH_ITEM_REACTIONS
  • SLACK_FETCH_MESSAGE_THREAD_FROM_A_CONVERSATION
  • SLACK_FETCH_TEAM_INFO
  • SLACK_FIND_CHANNELS
  • SLACK_FIND_USER_BY_EMAIL_ADDRESS
  • SLACK_FIND_USERS
  • SLACK_GET_APP_PERMISSION_SCOPES
  • SLACK_GET_AUDIT_ACTION_TYPES
  • SLACK_GET_AUDIT_SCHEMAS
  • SLACK_GET_BOT_USER
  • SLACK_GET_CALL_INFO
  • SLACK_GET_CANVAS
  • SLACK_GET_CHANNEL_CONVERSATION_PREFERENCES
  • SLACK_GET_REMINDER
  • SLACK_GET_REMOTE_FILE
  • SLACK_GET_TEAM_PROFILE
  • SLACK_GET_USER_DND_STATUS
  • SLACK_GET_USER_PRESENCE
  • SLACK_GET_WORKSPACE_CONNECTIONS_FOR_CHANNEL
  • SLACK_GET_WORKSPACE_SETTINGS
  • SLACK_INVITE_USERS_TO_A_SLACK_CHANNEL
  • SLACK_INVITE_USER_TO_CHANNEL
  • SLACK_INVITE_USER_TO_WORKSPACE
  • SLACK_JOIN_AN_EXISTING_CONVERSATION
  • SLACK_LEAVE_A_CONVERSATION
  • SLACK_LEAVE_CONVERSATION
  • SLACK_LIST_ADMIN_APPS_APPROVED
  • SLACK_LIST_ADMIN_APPS_REQUESTS
  • SLACK_LIST_ADMIN_EMOJI
  • SLACK_LIST_ALL_CHANNELS
  • SLACK_LIST_ALL_USERS
  • SLACK_LIST_APPROVED_WORKSPACE_INVITE_REQUESTS
  • SLACK_LIST_AUTH_TEAMS
  • SLACK_LIST_CANVASES
  • SLACK_LIST_CONVERSATIONS
  • SLACK_LIST_CUSTOM_EMOJIS
  • SLACK_LIST_DENIED_WORKSPACE_INVITE_REQUESTS
  • SLACK_LIST_ENTERPRISE_TEAMS
  • SLACK_LIST_FILES_WITH_FILTERS_IN_SLACK
  • SLACK_LIST_IDP_GROUPS_LINKED_TO_CHANNEL
  • SLACK_LIST_PENDING_WORKSPACE_INVITE_REQUESTS
  • SLACK_LIST_PINNED_ITEMS
  • SLACK_LIST_REMINDERS
  • SLACK_LIST_REMOTE_FILES
  • SLACK_LIST_RESTRICTED_APPS
  • SLACK_LIST_SCHEDULED_MESSAGES
  • SLACK_LIST_STARRED_ITEMS
  • SLACK_LIST_USER_GROUP_MEMBERS
  • SLACK_LIST_USER_GROUPS
  • SLACK_LIST_USER_REACTIONS
  • SLACK_LIST_WORKSPACE_ADMINS
  • SLACK_LIST_WORKSPACE_OWNERS
  • SLACK_LIST_WORKSPACE_USERS
  • SLACK_LOOKUP_CANVAS_SECTIONS
  • SLACK_MANUALLY_SET_USER_PRESENCE
  • SLACK_OPEN_DM
  • SLACK_PIN_ITEM
  • SLACK_READ_AUDIT_LOGS
  • SLACK_REMOVE_CALL_PARTICIPANTS
  • SLACK_REMOVE_EMOJI
  • SLACK_REMOVE_REACTION_FROM_ITEM
  • SLACK_REMOVE_REMOTE_FILE
  • SLACK_REMOVE_STAR
  • SLACK_REMOVE_USER_FROM_CONVERSATION
  • SLACK_REMOVE_USER_FROM_WORKSPACE
  • SLACK_RENAME_CONVERSATION
  • SLACK_RENAME_EMOJI
  • SLACK_RESET_USER_SESSIONS
  • SLACK_RESTRICT_APP_INSTALLATION
  • SLACK_RETRIEVE_A_USER_S_IDENTITY_DETAILS
  • SLACK_RETRIEVE_CONVERSATION_INFORMATION
  • SLACK_RETRIEVE_CONVERSATION_MEMBERS_LIST
  • SLACK_RETRIEVE_CURRENT_USER_DND_STATUS
  • SLACK_RETRIEVE_DETAILED_INFORMATION_ABOUT_A_FILE
  • SLACK_RETRIEVE_DETAILED_USER_INFORMATION
  • SLACK_RETRIEVE_MESSAGE_PERMALINK_URL
  • SLACK_RETRIEVE_USER_PROFILE_INFORMATION
  • SLACK_REVOKE_FILE_PUBLIC_SHARING
  • SLACK_RTM_CONNECT
  • SLACK_RTM_START
  • SLACK_SCHEDULE_MESSAGE
  • SLACK_SCIM_GET_CONFIG
  • SLACK_SEARCH_ALL
  • SLACK_SEARCH_MESSAGES
  • SLACK_SEND_EPHEMERAL_MESSAGE
  • SLACK_SEND_ME_MESSAGE
  • SLACK_SEND_MESSAGE
  • SLACK_SET_ADMIN_USER
  • SLACK_SET_CONVERSATION_PREFS
  • SLACK_SET_CONVERSATION_PURPOSE
  • SLACK_SET_DEFAULT_CHANNELS
  • SLACK_SET_DND_DURATION
  • SLACK_SET_PROFILE_PHOTO
  • SLACK_SET_READ_CURSOR_IN_A_CONVERSATION
  • SLACK_SET_STATUS
  • SLACK_SET_THE_TOPIC_OF_A_CONVERSATION
  • SLACK_SET_USER_ACTIVE
  • SLACK_SET_USER_PRESENCE
  • SLACK_SET_USER_PROFILE
  • SLACK_SET_WORKSPACE_DESCRIPTION
  • SLACK_SET_WORKSPACE_ICON
  • SLACK_SET_WORKSPACE_NAME
  • SLACK_SET_WORKSPACE_OWNER
  • SLACK_SET_WORKSPACES_FOR_CHANNEL
  • SLACK_SHARE_REMOTE_FILE
  • SLACK_START_CALL
  • SLACK_TEST_AUTH
  • SLACK_UNARCHIVE_CHANNEL
  • SLACK_UNPIN_ITEM
  • SLACK_UPDATE_CALL_INFO
  • SLACK_UPDATE_REMOTE_FILE
  • SLACK_UPDATES_A_SLACK_MESSAGE
  • SLACK_UPDATE_USER_GROUP
  • SLACK_UPDATE_USER_GROUP_MEMBERS
  • SLACK_UPLOAD_OR_CREATE_A_FILE_IN_SLACK

Build with Slack

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