Skip to content

Commit 09ebdb6

Browse files
authored
Add toolkit name to slack tools (#335)
Add TK name to slack tools
1 parent 9d78b59 commit 09ebdb6

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

pages/toolkits/social-communication/slack.mdx

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -44,60 +44,60 @@ These tools are currently available in the Arcade Slack toolkit.
4444
["Slack.SendDmToUser", "Send a direct message to a user in Slack."],
4545
["Slack.SendMessageToChannel", "Send a message to a channel in Slack."],
4646
[
47-
"GetMembersInConversationById",
47+
"Slack.GetMembersInConversationById",
4848
"Retrieve members of a conversation using its ID.",
4949
],
5050
[
51-
"GetMembersInChannelByName",
51+
"Slack.GetMembersInChannelByName",
5252
"Retrieve members of a channel using its name.",
5353
],
5454
[
55-
"GetMessagesInConversationById",
55+
"Slack.GetMessagesInConversationById",
5656
"Fetch the messages in a conversation using its ID.",
5757
],
5858
[
59-
"GetMessagesInChannelByName",
59+
"Slack.GetMessagesInChannelByName",
6060
"Fetch the messages in a channel using its name.",
6161
],
6262
[
63-
"GetMessagesInDirectMessageConversationByUsername",
63+
"Slack.GetMessagesInDirectMessageConversationByUsername",
6464
"Fetch the messages in a direct message conversation using the username of the other participant.",
6565
],
6666
[
67-
"GetMessagesInMultiPersonDmConversationByUsername",
67+
"Slack.GetMessagesInMultiPersonDmConversationByUsername",
6868
"Fetch the messages in a multi-person direct message conversation using the usernames of the other participants.",
6969
],
7070
[
71-
"GetConversationMetadataById",
71+
"Slack.GetConversationMetadataById",
7272
"Retrieve metadata of a conversation using its ID.",
7373
],
7474
[
75-
"GetChannelMetadataByName",
75+
"Slack.GetChannelMetadataByName",
7676
"Retrieve metadata of a channel using its name.",
7777
],
7878
[
79-
"GetDirectMessageConversationMetadataByUsername",
79+
"Slack.GetDirectMessageConversationMetadataByUsername",
8080
"Retrieve metadata of a direct message conversation using the username of the other participant.",
8181
],
8282
[
83-
"GetMultiPersonDmConversationMetadataByUsername",
83+
"Slack.GetMultiPersonDmConversationMetadataByUsername",
8484
"Retrieve metadata of a multi-person direct message conversation using the usernames of the other participants.",
8585
],
8686
["Slack.ListConversationsMetadata", "List metadata for Slack conversations."],
8787
[
88-
"ListPublicChannelsMetadata",
88+
"Slack.ListPublicChannelsMetadata",
8989
"List metadata for public channels in Slack.",
9090
],
9191
[
92-
"ListPrivateChannelsMetadata",
92+
"Slack.ListPrivateChannelsMetadata",
9393
"List metadata for private channels in Slack.",
9494
],
9595
[
96-
"ListGroupDirectMessageConversationsMetadata",
96+
"Slack.ListGroupDirectMessageConversationsMetadata",
9797
"List metadata for group direct message conversations in Slack.",
9898
],
9999
[
100-
"ListDirectMessageConversationsMetadata",
100+
"Slack.ListDirectMessageConversationsMetadata",
101101
"List metadata for direct message conversations in Slack.",
102102
],
103103
["Slack.GetUserInfoById", "Retrieve information of a user by their ID."],
@@ -164,7 +164,7 @@ Send a message to a channel in Slack.
164164

165165
---
166166

167-
## GetMembersInConversationById
167+
## Slack.GetMembersInConversationById
168168

169169
<br />
170170
<TabbedCodeBlock
@@ -191,7 +191,7 @@ Get the members of a conversation in Slack by the conversation's ID.
191191

192192
---
193193

194-
## GetMembersInChannelByName
194+
## Slack.GetMembersInChannelByName
195195

196196
<br />
197197
<TabbedCodeBlock
@@ -218,7 +218,7 @@ Get the members of a channel in Slack by the channel's name.
218218

219219
---
220220

221-
## GetMessagesInConversationById
221+
## Slack.GetMessagesInConversationById
222222

223223
<br />
224224
<TabbedCodeBlock
@@ -253,7 +253,7 @@ Get the history of a conversation in Slack.
253253

254254
---
255255

256-
## GetMessagesInChannelByName
256+
## Slack.GetMessagesInChannelByName
257257

258258
<br />
259259
<TabbedCodeBlock
@@ -288,7 +288,7 @@ Get the messages in a channel in Slack.
288288

289289
---
290290

291-
## GetMessagesInDirectMessageConversationByUsername
291+
## Slack.GetMessagesInDirectMessageConversationByUsername
292292

293293
<br />
294294
<TabbedCodeBlock
@@ -323,7 +323,7 @@ Get the messages in a Direct Message conversation with another user in Slack.
323323

324324
---
325325

326-
## GetMessagesInMultiPersonDmConversationByUsername
326+
## Slack.GetMessagesInMultiPersonDmConversationByUsername
327327

328328
<br />
329329
<TabbedCodeBlock
@@ -358,7 +358,7 @@ Get the messages in a multi-person direct message conversation in Slack by the u
358358

359359
---
360360

361-
## GetConversationMetadataById
361+
## Slack.GetConversationMetadataById
362362

363363
<br />
364364
<TabbedCodeBlock
@@ -383,7 +383,7 @@ Get the metadata of a conversation in Slack searching by its ID.
383383

384384
---
385385

386-
## GetChannelMetadataByName
386+
## Slack.GetChannelMetadataByName
387387

388388
<br />
389389
<TabbedCodeBlock
@@ -409,7 +409,7 @@ Get the metadata of a channel in Slack searching by its name.
409409

410410
---
411411

412-
## GetDirectMessageConversationMetadataByUsername
412+
## Slack.GetDirectMessageConversationMetadataByUsername
413413

414414
<br />
415415
<TabbedCodeBlock
@@ -435,7 +435,7 @@ Get the metadata of a direct message conversation in Slack searching by the user
435435

436436
---
437437

438-
## GetMultiPersonDmConversationMetadataByUsername
438+
## Slack.GetMultiPersonDmConversationMetadataByUsername
439439

440440
<br />
441441
<TabbedCodeBlock
@@ -488,7 +488,7 @@ List metadata for Slack conversations (channels and/or direct messages) that the
488488

489489
---
490490

491-
## ListPublicChannelsMetadata
491+
## Slack.ListPublicChannelsMetadata
492492

493493
<br />
494494
<TabbedCodeBlock
@@ -513,7 +513,7 @@ List metadata for public channels in Slack that the user is a member of.
513513

514514
---
515515

516-
## ListPrivateChannelsMetadata
516+
## Slack.ListPrivateChannelsMetadata
517517

518518
<br />
519519
<TabbedCodeBlock
@@ -538,7 +538,7 @@ List metadata for private channels in Slack that the user is a member of.
538538

539539
---
540540

541-
## ListGroupDirectMessageConversationsMetadata
541+
## Slack.ListGroupDirectMessageConversationsMetadata
542542

543543
<br />
544544
<TabbedCodeBlock
@@ -563,7 +563,7 @@ List metadata for group direct message conversations in Slack that the user is a
563563

564564
---
565565

566-
## ListDirectMessageConversationsMetadata
566+
## Slack.ListDirectMessageConversationsMetadata
567567

568568
<br />
569569
<TabbedCodeBlock

0 commit comments

Comments
 (0)