Module: Slack::Web::Api::Endpoints::Mpim
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/mpim.rb
Instance Method Summary collapse
-
#mpim_close(options = {}) ⇒ Object
This method closes a multiparty direct message channel.
-
#mpim_history(options = {}) ⇒ Object
This method returns a portion of messages/events from the specified multiparty direct message channel.
-
#mpim_list(options = {}) ⇒ Object
This method returns a list of all multiparty direct message channels that the user has.
-
#mpim_mark(options = {}) ⇒ Object
This method moves the read cursor in a multiparty direct message channel.
-
#mpim_open(options = {}) ⇒ Object
This method opens a multiparty direct message.
Instance Method Details
#mpim_close(options = {}) ⇒ Object
This method closes a multiparty direct message channel.
15 16 17 18 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 15 def mpim_close( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? post('mpim.close', ) end |
#mpim_history(options = {}) ⇒ Object
This method returns a portion of messages/events from the specified multiparty direct message channel. To read the entire history for a multiparty direct message, call the method with no latest or oldest arguments, and then continue paging using the instructions below.
37 38 39 40 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 37 def mpim_history( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? post('mpim.history', ) end |
#mpim_list(options = {}) ⇒ Object
This method returns a list of all multiparty direct message channels that the user has.
47 48 49 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 47 def mpim_list( = {}) post('mpim.list', ) end |
#mpim_mark(options = {}) ⇒ Object
This method moves the read cursor in a multiparty direct message channel.
60 61 62 63 64 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 60 def mpim_mark( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? throw ArgumentError.new('Required arguments :ts missing') if [:ts].nil? post('mpim.mark', ) end |
#mpim_open(options = {}) ⇒ Object
This method opens a multiparty direct message.
73 74 75 76 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 73 def mpim_open( = {}) throw ArgumentError.new('Required arguments :users missing') if [:users].nil? post('mpim.open', ) end |