module Slack::Web::Api::Endpoints::CallsParticipants
def calls_participants_add(options = {})
- See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/calls.participants/calls.participants.add.json -
See: https://api.slack.com/methods/calls.participants.add -
Options Hash:
(**options)
-
:users
(Object
) -- -
:id
(Object
) --
def calls_participants_add(options = {}) throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? post('calls.participants.add', options) end
def calls_participants_remove(options = {})
- See: https://github.com/slack-ruby/slack-api-ref/blob/master/methods/calls.participants/calls.participants.remove.json -
See: https://api.slack.com/methods/calls.participants.remove -
Options Hash:
(**options)
-
:users
(Object
) -- -
:id
(Object
) --
def calls_participants_remove(options = {}) throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? post('calls.participants.remove', options) end