You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reads a Slack thread using the Slack API method https://api.slack.com/methods/conversations.replies[conversations.replies^].
8
+
9
+
ifndef::env-cloud[]
10
+
Introduced in version 4.52.0.
11
+
endif::[]
12
+
13
+
```yml
14
+
# Common configuration fields, showing default values
15
+
label: ""
16
+
slack_thread:
17
+
bot_token: "" # No default (required)
18
+
channel_id: "" # No default (required)
19
+
thread_ts: "" # No default (required)
20
+
```
21
+
22
+
== Fields
23
+
24
+
=== `bot_token`
25
+
26
+
Your Slack bot user's OAuth token, which must have the correct permissions to read messages from the Slack channel specified in `channel_id`.
27
+
28
+
*Type*: `string`
29
+
30
+
=== `channel_id`
31
+
32
+
The encoded ID of the Slack channel from which to read threads. This field supports xref:configuration:interpolation.adoc#bloblang-queries[interpolation functions].
33
+
34
+
*Type*: `string`
35
+
36
+
=== `thread_ts`
37
+
38
+
The timestamp of the parent message of the thread you want to read. This field supports xref:configuration:interpolation.adoc#bloblang-queries[interpolation functions].
0 commit comments