Slack

SLACKBOT_CREATE_A_USER_GROUP

Creates a new User Group (often referred to as a subteam) in a Slack workspace.

Remote slackbot

Other tools also called SLACKBOT_CREATE_A_USER_GROUP? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name",
      "examples": [
        "Customer Support",
        "Core Engineering",
        "Project Phoenix Leads"
      ],
      "description": "Unique name for the User Group. Must be unique among all User Groups in the workspace."
    },
    "handle": {
      "type": "string",
      "title": "Handle",
      "examples": [
        "support-team",
        "devs",
        "project-phoenix-leads"
      ],
      "description": "Unique mention handle. Must be unique across channels, users, and other User Groups. Max 21 chars; lowercase letters, numbers, hyphens, underscores only."
    },
    "channels": {
      "type": "string",
      "title": "Channels",
      "examples": [
        "C012AB3CD,C023BC4DE",
        "C034CD5EF"
      ],
      "description": "Comma-separated encoded channel IDs for default channels, suggested when mentioning or inviting the group."
    },
    "description": {
      "type": "string",
      "title": "Description",
      "examples": [
        "Manages all customer support inquiries.",
        "Core engineering team members."
      ],
      "description": "Short description for the User Group."
    },
    "include_count": {
      "type": "boolean",
      "title": "Include Count",
      "description": "Include the User Group's user count in the response. Server defaults to `false` if omitted."
    }
  }
}
          

Provider

Slack →