module Slack::Web::Api::Endpoints::Chat
def chat_update(options = {})
- See: https://github.com/slackhq/slack-api-docs/blob/master/methods/chat.update.json -
See: https://github.com/slackhq/slack-api-docs/blob/master/methods/chat.update.md -
See: https://api.slack.com/methods/chat.update -
Options Hash:
(**options)
-
:text
(Object
) -- -
:channel
(channel
) -- -
:ts
(Object
) --
def chat_update(options = {}) throw ArgumentError.new('Required arguments :ts missing') if options[:ts].nil? throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil? throw ArgumentError.new('Required arguments :text missing') if options[:text].nil? post('chat.update', options) end