Sha256: 023dfe490dee4ae0f0b3b6a3986a42a6b1713eb6e89b05c96e99d3a460ac7d6a
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake module Slack module Web module Api module Endpoints module AdminConversationsEkm # # List all disconnected channels—i.e., channels that were once connected to other workspaces and then disconnected—and the corresponding original channel IDs for key revocation with EKM. # # @option options [Object] :channel_ids # A comma-separated list of channels to filter to. # @option options [Object] :cursor # Set cursor to next_cursor returned by the previous call to list items in the next page. # @option options [Object] :limit # The maximum number of items to return. Must be between 1 - 1000 both inclusive. # @option options [Object] :team_ids # A comma-separated list of the workspaces to which the channels you would like returned belong. # @see https://api.slack.com/methods/admin.conversations.ekm.listOriginalConnectedChannelInfo # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/admin.conversations.ekm/admin.conversations.ekm.listOriginalConnectedChannelInfo.json def admin_conversations_ekm_listOriginalConnectedChannelInfo(options = {}) if block_given? Pagination::Cursor.new(self, :admin_conversations_ekm_listOriginalConnectedChannelInfo, options).each do |page| yield page end else post('admin.conversations.ekm.listOriginalConnectedChannelInfo', options) end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-0.17.0 | lib/slack/web/api/endpoints/admin_conversations_ekm.rb |
slack-ruby-client-0.16.0 | lib/slack/web/api/endpoints/admin_conversations_ekm.rb |