all_conversation_replies: Retrieve All Replies

View source: R/conversations.R

all_conversation_repliesR Documentation

Retrieve All Replies

Description

Retrieve replies to all conversations from a channel on a Slack team.

Usage

all_conversation_replies(
  conversations,
  ...,
  token = Sys.getenv("SLACK_API_TOKEN"),
  max_results = Inf,
  max_calls = Inf,
  limit = 1000L
)

Arguments

conversations

The list returned by conversations.

...

Arguments to pass to method

token

Character. Your Slack API token. Default: Sys.getenv("SLACK_API_TOKEN")

max_results

Integer. The maximum number of results to return (total). Note: The actual maximum will be max_results rounded up to a multiple of limit. Default: Inf

max_calls

Integer. The maximum number of separate API calls to make while constructing the response. Default: Inf

limit

Numeric, maximum number of results per call. Default: 1000L

Value

A nested list with additional class "channel.replies". The return has the same length as conversations. Each element of the list is an individual return from conversation_replies.


yonicd/threads documentation built on March 27, 2023, 8:45 a.m.