Slack
SLACK_OPEN_OR_RESUME_DIRECT_OR_MULTI_PERSON_MESSAGES
DEPRECATED: Opens or resumes a Slack direct message (DM) or multi-person direct message (MPIM). Use `open_dm` instead.
Remote slack
Other tools also called SLACK_OPEN_OR_RESUME_DIRECT_OR_MULTI_PERSON_MESSAGES?
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`)."
}
}
}