module Slack::Web::Api::Endpoints::Search

def search_all(options = {})

Other tags:
    See: https://github.com/dblock/slack-api-ref/blob/master/methods/search/search.all.json -
    See: https://api.slack.com/methods/search.all -

Options Hash: (**options)
  • :sort_dir (Object) --
  • :sort (Object) --
  • :highlight (Object) --
  • :query (Object) --
def search_all(options = {})
  throw ArgumentError.new('Required arguments :query missing') if options[:query].nil?
  post('search.all', options)
end