Slack

SLACK_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 slack

Other tools also called SLACK_OPEN_DM? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "users": {
      "type": "string",
      "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.\nExamples:\n  \"U0123456789\"\n  \"U0123456789,U9876543210\""
    },
    "channel": {
      "type": "string",
      "description": "ID or name of an existing DM or MPIM channel to open/resume. Do not use if `users` is provided.\nExamples:\n  \"D0123456789\"\n  \"general\""
    },
    "return_im": {
      "type": "boolean",
      "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 →