Retrieve replies to all conversations from a channel on a Slack team.
all_conversation_replies(
conversations,
...,
token = Sys.getenv("SLACK_API_TOKEN"),
max_results = Inf,
max_calls = Inf,
limit = 1000L
)
The list returned by conversations
.
Arguments to pass to method
Character. Your Slack API token. Default: Sys.getenv("SLACK_API_TOKEN")
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
Integer. The maximum number of separate API calls to make while constructing the response. Default: Inf
Numeric, maximum number of results per call. Default: 1000L
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
.