Skip to content

Commit c3489cd

Browse files
author
Slack API Ref Buildbot
committed
Updated from Slack docs, 2025/10/28
1 parent 4ac83f7 commit c3489cd

File tree

8 files changed

+39
-3
lines changed

8 files changed

+39
-3
lines changed

docs.slack.dev/methods/assistant.search.context.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@
7777
"example": "true",
7878
"type": "boolean"
7979
},
80+
"include_deleted_users": {
81+
"default": false,
82+
"desc": "Whether to include deleted users in the user search results. Defaults to false.",
83+
"example": "false",
84+
"logged": true,
85+
"type": "boolean"
86+
},
8087
"before": {
8188
"desc": "UNIX timestamp filter. If present, filters for results before this date.",
8289
"example": "1754670081",
@@ -155,6 +162,11 @@
155162
"example": "has:pin before:yesterday",
156163
"minLength": 1,
157164
"maxLength": 500
165+
},
166+
"include_archived_channels": {
167+
"type": "boolean",
168+
"desc": "Whether to include archived channels in the search results.",
169+
"default": false
158170
}
159171
}
160172
},
@@ -331,7 +343,8 @@
331343
"date_created",
332344
"date_updated",
333345
"name",
334-
"permalink"
346+
"permalink",
347+
"is_archived"
335348
],
336349
"properties": {
337350
"team_id": {
@@ -370,6 +383,10 @@
370383
"desc": "Permanent link to the channel in Slack.",
371384
"type": "string",
372385
"format": "uri"
386+
},
387+
"is_archived": {
388+
"type": "boolean",
389+
"desc": "Whether the channel is archived."
373390
}
374391
}
375392
}

docs.slack.dev/methods/chat.stopStream.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@
9090
"channel_not_found": {
9191
"desc": "Value passed for `channel` was invalid."
9292
},
93+
"channel_type_not_supported": {
94+
"desc": "Channel type not supported."
95+
},
9396
"duplicate_channel_not_found": {
9497
"desc": "Channel associated with `client_msg_id` was invalid."
9598
},

docs.slack.dev/methods/conversations.info.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
}
7373
},
7474
"errors": {
75+
"channel_is_limited_access": {
76+
"desc": "The user has no access to the channel. Only applicable to Salesforce limited access channels."
77+
},
7578
"channel_not_found": {
7679
"desc": "Value passed for `channel` was invalid."
7780
},

docs.slack.dev/methods/files.completeUploadExternal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"example": "1524523204.000192"
6161
},
6262
"channels": {
63-
"desc": "Comma-separated string of channel IDs where the file will be shared.",
63+
"desc": "Comma-separated string of channel IDs or user IDs where the file will be shared.",
6464
"type": "string",
6565
"subtype": "channels",
6666
"example": "C0NF841BK,C2AW648GH"

methods/assistant/assistant.search.context.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434
"desc": "Whether the results should include bots.",
3535
"type": "boolean"
3636
},
37+
"include_deleted_users": {
38+
"required": false,
39+
"example": "false",
40+
"desc": "Whether to include deleted users in the user search results. Defaults to false.",
41+
"type": "boolean"
42+
},
3743
"before": {
3844
"required": false,
3945
"example": "1754670081",
@@ -100,6 +106,11 @@
100106
"example": "has:pin before:yesterday",
101107
"desc": "A string containing only modifiers in the format of modifier:value. Search results returned will match the modifier value. For now modifiers only affect term clauses.",
102108
"type": "string"
109+
},
110+
"include_archived_channels": {
111+
"required": false,
112+
"desc": "Whether to include archived channels in the search results.",
113+
"type": "boolean"
103114
}
104115
},
105116
"response": {

methods/chat/chat.stopStream.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"attachment_payload_limit_exceeded": "Attachment payload size is too long.",
4747
"cannot_reply_to_message": "This message type cannot have thread replies.",
4848
"channel_not_found": "Value passed for `channel` was invalid.",
49+
"channel_type_not_supported": "Channel type not supported.",
4950
"deprecated_endpoint": "The endpoint has been deprecated.",
5051
"duplicate_channel_not_found": "Channel associated with `client_msg_id` was invalid.",
5152
"duplicate_message_not_found": "No duplicate message exists associated with `client_msg_id`.",

methods/conversations/conversations.info.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"access_denied": "Access to a resource specified in the request is denied.",
3434
"accesslimited": "Access to this method is limited on the current network.",
3535
"account_inactive": "Authentication token is for a deleted user or workspace when using a bot token.",
36+
"channel_is_limited_access": "The user has no access to the channel. Only applicable to Salesforce limited access channels.",
3637
"channel_not_found": "Value passed for `channel` was invalid.",
3738
"deprecated_endpoint": "The endpoint has been deprecated.",
3839
"ekm_access_denied": "Administrators have suspended the ability to post a message.",

methods/files/files.completeUploadExternal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"channels": {
2525
"required": false,
2626
"example": "C0NF841BK,C2AW648GH",
27-
"desc": "Comma-separated string of channel IDs where the file will be shared.",
27+
"desc": "Comma-separated string of channel IDs or user IDs where the file will be shared.",
2828
"type": "string"
2929
},
3030
"initial_comment": {

0 commit comments

Comments
 (0)