module Slack::Web::Api::Endpoints::Conversations

def conversations_list(options = {})

Other tags:
    See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/conversations/conversations.list.json -
    See: https://api.slack.com/methods/conversations.list -

Options Hash: (**options)
  • :types (Object) --
  • :limit (Object) --
  • :exclude_archived (Object) --
  • :cursor (Object) --
def conversations_list(options = {})
  if block_given?
    Pagination::Cursor.new(self, :conversations_list, options).each do |page|
      yield page
    end
  else
    post('conversations.list', options)
  end
end