Slack

SLACKBOT_LIST_ACCESSIBLE_CONVERSATIONS_FOR_A_USER

DEPRECATED: Retrieves conversations accessible to a specified user. Use `list_conversations` instead.

Remote slackbot

Other tools also called SLACKBOT_LIST_ACCESSIBLE_CONVERSATIONS_FOR_A_USER? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "user": {
      "type": "string",
      "title": "User",
      "examples": [
        "U123ABC456",
        "W012A3BCD"
      ],
      "description": "The ID of the user whose conversations will be listed. If not provided, conversations for the authenticated user are returned. Non-public channels are restricted to those where the calling user (authenticating user) shares membership."
    },
    "limit": {
      "type": "integer",
      "title": "Limit",
      "examples": [
        "100",
        "500",
        "1000"
      ],
      "description": "The maximum number of items to return per page. Must be an integer, typically between 1 and 1000 (e.g., 100). If omitted, the API's default limit (often 100) applies. Fewer items than the limit may be returned."
    },
    "types": {
      "type": "string",
      "title": "Types",
      "examples": [
        "public_channel,private_channel",
        "im,mpim",
        "public_channel"
      ],
      "description": "A comma-separated list of conversation types to include. Valid types are `public_channel`, `private_channel`, `mpim` (multi-person direct message), and `im` (direct message). If omitted, all types are included."
    },
    "cursor": {
      "type": "string",
      "title": "Cursor",
      "examples": [
        "dXNlcjpVMDYxREk0Nlc=",
        "bmV4dF90czoxNTEyMDg1ODYxMDAwNTQz"
      ],
      "description": "Pagination cursor for retrieving the next set of results. Obtain this from the `next_cursor` field in a previous response's `response_metadata`. If omitted, the first page is fetched."
    },
    "exclude_archived": {
      "type": "boolean",
      "title": "Exclude Archived",
      "examples": [
        "true",
        "false"
      ],
      "description": "Set to `true` to exclude archived channels from the list. If `false` or omitted, archived channels are typically included (the API's default behavior for omission will apply, usually including them)."
    }
  }
}
          

Provider

Slack →