module Slack::Web::Api::Endpoints::ChatScheduledmessages

Public Instance Methods

chat_scheduledMessages_list(options = {}) { |page| ... } click to toggle source

Returns a list of scheduled messages.

@option options [channel] :channel

The channel of the scheduled messages.

@option options [Object] :cursor

For pagination purposes, this is the cursor value returned from a previous call to chat.scheduledmessages.list indicating where you want to start this call from.

@option options [timestamp] :latest

A UNIX timestamp of the latest value in the time range.

@option options [Object] :limit

Maximum number of original entries to return.

@option options [timestamp] :oldest

A UNIX timestamp of the oldest value in the time range.

@option options [Object] :team_id

encoded team id to list channels in, required if org token is used.

@see api.slack.com/methods/chat.scheduledMessages.list @see github.com/slack-ruby/slack-api-ref/blob/master/methods/chat.scheduledMessages/chat.scheduledMessages.list.json

# File lib/slack/web/api/endpoints/chat_scheduledMessages.rb, line 26
def chat_scheduledMessages_list(options = {})
  options = options.merge(channel: conversations_id(options)['channel']['id']) if options[:channel]
  if block_given?
    Pagination::Cursor.new(self, :chat_scheduledMessages_list, options).each do |page|
      yield page
    end
  else
    post('chat.scheduledMessages.list', options)
  end
end