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

def conversations_replies(options = {})

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

Options Hash: (**options)
  • :oldest (timestamp) --
  • :limit (number) --
  • :latest (timestamp) --
  • :inclusive (boolean) --
  • :include_all_metadata (boolean) --
  • :cursor (string) --
  • :ts (timestamp) --
  • :channel (channel) --
def conversations_replies(options = {})
  raise ArgumentError, 'Required arguments :channel missing' if options[:channel].nil?
  raise ArgumentError, 'Required arguments :ts missing' if options[:ts].nil?
  options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
  if block_given?
    Pagination::Cursor.new(self, :conversations_replies, options).each do |page|
      yield page
    end
  else
    post('conversations.replies', options)
  end
end