Slack

SLACKBOT_OPEN_DM

Opens or resumes a Slack direct message (DM) or multi-person direct message (MPIM) by providing either user IDs or an existing channel ID.

Remote slackbot

Other tools also called SLACKBOT_OPEN_DM? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "users": {
      "type": "string",
      "title": "Users",
      "examples": [
        "U0123456789",
        "U0123456789,U9876543210"
      ],
      "description": "Comma-separated list of user IDs (1 for a DM, or 2-8 for an MPIM) to open/resume a conversation. Order is preserved for MPIMs. Do not use if `channel` is provided."
    },
    "channel": {
      "type": "string",
      "title": "Channel",
      "examples": [
        "D0123456789",
        "general"
      ],
      "description": "ID or name of an existing DM or MPIM channel to open/resume. Do not use if `users` is provided."
    },
    "return_im": {
      "type": "boolean",
      "title": "Return Im",
      "description": "If `true`, returns the full DM channel object. Applies only when opening a DM via a single user ID in `users` (not with `channel`)."
    }
  }
}
          

Provider

Slack →