module Slack::Web::Api::Endpoints::Mpim
def mpim_replies(options = {})
- See: https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.replies.json -
See: https://api.slack.com/methods/mpim.replies -
Options Hash:
(**options)
-
:thread_ts
(Object
) -- -
:channel
(channel
) --
def mpim_replies(options = {}) throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil? throw ArgumentError.new('Required arguments :thread_ts missing') if options[:thread_ts].nil? options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel] post('mpim.replies', options) end