airbyte-agent-slack 0.1.6__tar.gz → 0.1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/CHANGELOG.md +10 -0
  2. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/PKG-INFO +32 -13
  3. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/README.md +31 -12
  4. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/REFERENCE.md +507 -1
  5. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/__init__.py +47 -3
  6. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/executor/local_executor.py +3 -1
  7. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http_client.py +2 -0
  8. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/logging/logger.py +10 -1
  9. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/logging/types.py +1 -0
  10. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/validation.py +12 -6
  11. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/connector.py +334 -1
  12. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/connector_model.py +1767 -703
  13. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/models.py +143 -21
  14. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/types.py +41 -0
  15. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/pyproject.toml +1 -1
  16. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/.gitignore +0 -0
  17. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/__init__.py +0 -0
  18. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/__init__.py +0 -0
  19. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/auth_strategies.py +0 -0
  20. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/auth_template.py +0 -0
  21. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
  22. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/cloud_utils/client.py +0 -0
  23. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/connector_model_loader.py +0 -0
  24. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/constants.py +0 -0
  25. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/exceptions.py +0 -0
  26. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/executor/__init__.py +0 -0
  27. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/executor/hosted_executor.py +0 -0
  28. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/executor/models.py +0 -0
  29. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/extensions.py +0 -0
  30. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/__init__.py +0 -0
  31. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
  32. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
  33. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/config.py +0 -0
  34. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/exceptions.py +0 -0
  35. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/protocols.py +0 -0
  36. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/http/response.py +0 -0
  37. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/introspection.py +0 -0
  38. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/logging/__init__.py +0 -0
  39. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/observability/__init__.py +0 -0
  40. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/observability/config.py +0 -0
  41. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/observability/models.py +0 -0
  42. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/observability/redactor.py +0 -0
  43. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/observability/session.py +0 -0
  44. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/performance/__init__.py +0 -0
  45. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/performance/instrumentation.py +0 -0
  46. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/performance/metrics.py +0 -0
  47. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/__init__.py +0 -0
  48. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/base.py +0 -0
  49. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/components.py +0 -0
  50. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/connector.py +0 -0
  51. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/extensions.py +0 -0
  52. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/operations.py +0 -0
  53. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/schema/security.py +0 -0
  54. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/secrets.py +0 -0
  55. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/__init__.py +0 -0
  56. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/config.py +0 -0
  57. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/events.py +0 -0
  58. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/telemetry/tracker.py +0 -0
  59. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/types.py +0 -0
  60. {airbyte_agent_slack-0.1.6 → airbyte_agent_slack-0.1.8}/airbyte_agent_slack/_vendored/connector_sdk/utils.py +0 -0
@@ -1,5 +1,15 @@
1
1
  # Slack changelog
2
2
 
3
+ ## [0.1.8] - 2026-01-20
4
+ - Updated connector definition (YAML version 0.1.2)
5
+ - Source commit: 3d42e4e8
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.1.7] - 2026-01-19
9
+ - Updated connector definition (YAML version 0.1.1)
10
+ - Source commit: 529cebb7
11
+ - SDK version: 0.1.0
12
+
3
13
  ## [0.1.6] - 2026-01-16
4
14
  - Updated connector definition (YAML version 0.1.1)
5
15
  - Source commit: a50c8f71
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-slack
3
- Version: 0.1.6
3
+ Version: 0.1.8
4
4
  Summary: Airbyte Slack Connector for AI platforms
5
5
  Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
6
  Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
@@ -34,8 +34,10 @@ Description-Content-Type: text/markdown
34
34
  # Slack agent connector
35
35
 
36
36
  Slack is a business communication platform that offers messaging, file sharing, and integrations
37
- with other tools. This connector provides access to users, channels, channel members, channel
38
- messages, and threads for workspace analytics and communication insights.
37
+ with other tools. This connector provides read access to users, channels, channel members, channel
38
+ messages, and threads for workspace analytics. It also supports write operations including sending
39
+ and updating messages, creating and renaming channels, setting channel topics and purposes, and
40
+ adding reactions to messages.
39
41
 
40
42
 
41
43
  ## Example questions
@@ -52,17 +54,30 @@ The Slack connector is optimized to handle prompts like these.
52
54
  - What messages were posted in channel \{channel_id\} last week?
53
55
  - Show me the conversation history for channel \{channel_id\}
54
56
  - List channel members for the general channel
57
+ - Send a message to channel \{channel_id\} saying 'Hello team!'
58
+ - Post a message in the general channel
59
+ - Update the message with timestamp \{ts\} in channel \{channel_id\}
60
+ - Create a new public channel called 'project-updates'
61
+ - Create a private channel named 'team-internal'
62
+ - Rename channel \{channel_id\} to 'new-channel-name'
63
+ - Set the topic for channel \{channel_id\} to 'Daily standup notes'
64
+ - Update the purpose of channel \{channel_id\}
65
+ - Add a thumbsup reaction to message \{ts\} in channel \{channel_id\}
66
+ - React with :rocket: to the latest message in channel \{channel_id\}
67
+ - Reply to thread \{ts\} in channel \{channel_id\} with 'Thanks for the update!'
55
68
 
56
69
  ## Unsupported questions
57
70
 
58
71
  The Slack connector isn't currently able to handle prompts like these.
59
72
 
60
- - Create a new channel
61
- - Delete a message
62
- - Send a message to a channel
63
- - Update a channel topic
64
- - Invite a user to a channel
65
- - Archive a channel
73
+ - Delete a message from channel \{channel_id\}
74
+ - Remove a reaction from a message
75
+ - Archive channel \{channel_id\}
76
+ - Invite user \{user_id\} to channel \{channel_id\}
77
+ - Remove user \{user_id\} from channel \{channel_id\}
78
+ - Delete channel \{channel_id\}
79
+ - Create a new user in the workspace
80
+ - Update user profile information
66
81
 
67
82
  ## Installation
68
83
 
@@ -112,9 +127,13 @@ This connector supports the following entities and actions.
112
127
  | Entity | Actions |
113
128
  |--------|---------|
114
129
  | Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
115
- | Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get) |
130
+ | Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get), [Create](./REFERENCE.md#channels-create), [Update](./REFERENCE.md#channels-update) |
116
131
  | Channel Messages | [List](./REFERENCE.md#channel-messages-list) |
117
132
  | Threads | [List](./REFERENCE.md#threads-list) |
133
+ | Messages | [Create](./REFERENCE.md#messages-create), [Update](./REFERENCE.md#messages-update) |
134
+ | Channel Topics | [Create](./REFERENCE.md#channel-topics-create) |
135
+ | Channel Purposes | [Create](./REFERENCE.md#channel-purposes-create) |
136
+ | Reactions | [Create](./REFERENCE.md#reactions-create) |
118
137
 
119
138
 
120
139
  For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
@@ -123,6 +142,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
123
142
 
124
143
  ## Version information
125
144
 
126
- - **Package version:** 0.1.6
127
- - **Connector version:** 0.1.1
128
- - **Generated with Connector SDK commit SHA:** a50c8f71ed01cb9fd029c6c72d7523dbe2d5cec7
145
+ - **Package version:** 0.1.8
146
+ - **Connector version:** 0.1.2
147
+ - **Generated with Connector SDK commit SHA:** 3d42e4e800c13be04bdad03db5c50318a12a9769
@@ -1,8 +1,10 @@
1
1
  # Slack agent connector
2
2
 
3
3
  Slack is a business communication platform that offers messaging, file sharing, and integrations
4
- with other tools. This connector provides access to users, channels, channel members, channel
5
- messages, and threads for workspace analytics and communication insights.
4
+ with other tools. This connector provides read access to users, channels, channel members, channel
5
+ messages, and threads for workspace analytics. It also supports write operations including sending
6
+ and updating messages, creating and renaming channels, setting channel topics and purposes, and
7
+ adding reactions to messages.
6
8
 
7
9
 
8
10
  ## Example questions
@@ -19,17 +21,30 @@ The Slack connector is optimized to handle prompts like these.
19
21
  - What messages were posted in channel \{channel_id\} last week?
20
22
  - Show me the conversation history for channel \{channel_id\}
21
23
  - List channel members for the general channel
24
+ - Send a message to channel \{channel_id\} saying 'Hello team!'
25
+ - Post a message in the general channel
26
+ - Update the message with timestamp \{ts\} in channel \{channel_id\}
27
+ - Create a new public channel called 'project-updates'
28
+ - Create a private channel named 'team-internal'
29
+ - Rename channel \{channel_id\} to 'new-channel-name'
30
+ - Set the topic for channel \{channel_id\} to 'Daily standup notes'
31
+ - Update the purpose of channel \{channel_id\}
32
+ - Add a thumbsup reaction to message \{ts\} in channel \{channel_id\}
33
+ - React with :rocket: to the latest message in channel \{channel_id\}
34
+ - Reply to thread \{ts\} in channel \{channel_id\} with 'Thanks for the update!'
22
35
 
23
36
  ## Unsupported questions
24
37
 
25
38
  The Slack connector isn't currently able to handle prompts like these.
26
39
 
27
- - Create a new channel
28
- - Delete a message
29
- - Send a message to a channel
30
- - Update a channel topic
31
- - Invite a user to a channel
32
- - Archive a channel
40
+ - Delete a message from channel \{channel_id\}
41
+ - Remove a reaction from a message
42
+ - Archive channel \{channel_id\}
43
+ - Invite user \{user_id\} to channel \{channel_id\}
44
+ - Remove user \{user_id\} from channel \{channel_id\}
45
+ - Delete channel \{channel_id\}
46
+ - Create a new user in the workspace
47
+ - Update user profile information
33
48
 
34
49
  ## Installation
35
50
 
@@ -79,9 +94,13 @@ This connector supports the following entities and actions.
79
94
  | Entity | Actions |
80
95
  |--------|---------|
81
96
  | Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
82
- | Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get) |
97
+ | Channels | [List](./REFERENCE.md#channels-list), [Get](./REFERENCE.md#channels-get), [Create](./REFERENCE.md#channels-create), [Update](./REFERENCE.md#channels-update) |
83
98
  | Channel Messages | [List](./REFERENCE.md#channel-messages-list) |
84
99
  | Threads | [List](./REFERENCE.md#threads-list) |
100
+ | Messages | [Create](./REFERENCE.md#messages-create), [Update](./REFERENCE.md#messages-update) |
101
+ | Channel Topics | [Create](./REFERENCE.md#channel-topics-create) |
102
+ | Channel Purposes | [Create](./REFERENCE.md#channel-purposes-create) |
103
+ | Reactions | [Create](./REFERENCE.md#reactions-create) |
85
104
 
86
105
 
87
106
  For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
@@ -90,6 +109,6 @@ For the service's official API docs, see the [Slack API reference](https://api.s
90
109
 
91
110
  ## Version information
92
111
 
93
- - **Package version:** 0.1.6
94
- - **Connector version:** 0.1.1
95
- - **Generated with Connector SDK commit SHA:** a50c8f71ed01cb9fd029c6c72d7523dbe2d5cec7
112
+ - **Package version:** 0.1.8
113
+ - **Connector version:** 0.1.2
114
+ - **Generated with Connector SDK commit SHA:** 3d42e4e800c13be04bdad03db5c50318a12a9769
@@ -9,9 +9,13 @@ The Slack connector supports the following entities and actions.
9
9
  | Entity | Actions |
10
10
  |--------|---------|
11
11
  | Users | [List](#users-list), [Get](#users-get) |
12
- | Channels | [List](#channels-list), [Get](#channels-get) |
12
+ | Channels | [List](#channels-list), [Get](#channels-get), [Create](#channels-create), [Update](#channels-update) |
13
13
  | Channel Messages | [List](#channel-messages-list) |
14
14
  | Threads | [List](#threads-list) |
15
+ | Messages | [Create](#messages-create), [Update](#messages-update) |
16
+ | Channel Topics | [Create](#channel-topics-create) |
17
+ | Channel Purposes | [Create](#channel-purposes-create) |
18
+ | Reactions | [Create](#reactions-create) |
15
19
 
16
20
  ### Users
17
21
 
@@ -307,6 +311,164 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_i
307
311
  | `is_read_only` | `boolean \| null` | |
308
312
 
309
313
 
314
+ </details>
315
+
316
+ #### Channels Create
317
+
318
+ Creates a new public or private channel
319
+
320
+ **Python SDK**
321
+
322
+ ```python
323
+ await slack.channels.create(
324
+ name="<str>"
325
+ )
326
+ ```
327
+
328
+ **API**
329
+
330
+ ```bash
331
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
332
+ --header 'Content-Type: application/json' \
333
+ --header 'Authorization: Bearer {your_auth_token}' \
334
+ --data '{
335
+ "entity": "channels",
336
+ "action": "create",
337
+ "params": {
338
+ "name": "<str>"
339
+ }
340
+ }'
341
+ ```
342
+
343
+
344
+ **Parameters**
345
+
346
+ | Parameter Name | Type | Required | Description |
347
+ |----------------|------|----------|-------------|
348
+ | `name` | `string` | Yes | Channel name (lowercase, no spaces, max 80 chars) |
349
+ | `is_private` | `boolean` | No | Create a private channel instead of public |
350
+
351
+
352
+ <details>
353
+ <summary><b>Response Schema</b></summary>
354
+
355
+ **Records**
356
+
357
+ | Field Name | Type | Description |
358
+ |------------|------|-------------|
359
+ | `id` | `string` | |
360
+ | `name` | `string \| null` | |
361
+ | `is_channel` | `boolean \| null` | |
362
+ | `is_group` | `boolean \| null` | |
363
+ | `is_im` | `boolean \| null` | |
364
+ | `is_mpim` | `boolean \| null` | |
365
+ | `is_private` | `boolean \| null` | |
366
+ | `created` | `integer \| null` | |
367
+ | `is_archived` | `boolean \| null` | |
368
+ | `is_general` | `boolean \| null` | |
369
+ | `unlinked` | `integer \| null` | |
370
+ | `name_normalized` | `string \| null` | |
371
+ | `is_shared` | `boolean \| null` | |
372
+ | `is_org_shared` | `boolean \| null` | |
373
+ | `is_pending_ext_shared` | `boolean \| null` | |
374
+ | `pending_shared` | `array \| null` | |
375
+ | `context_team_id` | `string \| null` | |
376
+ | `updated` | `integer \| null` | |
377
+ | `creator` | `string \| null` | |
378
+ | `is_ext_shared` | `boolean \| null` | |
379
+ | `shared_team_ids` | `array \| null` | |
380
+ | `pending_connected_team_ids` | `array \| null` | |
381
+ | `is_member` | `boolean \| null` | |
382
+ | `topic` | `object \| any` | |
383
+ | `purpose` | `object \| any` | |
384
+ | `previous_names` | `array \| null` | |
385
+ | `num_members` | `integer \| null` | |
386
+ | `parent_conversation` | `string \| null` | |
387
+ | `properties` | `object \| null` | |
388
+ | `is_thread_only` | `boolean \| null` | |
389
+ | `is_read_only` | `boolean \| null` | |
390
+
391
+
392
+ </details>
393
+
394
+ #### Channels Update
395
+
396
+ Renames an existing channel
397
+
398
+ **Python SDK**
399
+
400
+ ```python
401
+ await slack.channels.update(
402
+ channel="<str>",
403
+ name="<str>"
404
+ )
405
+ ```
406
+
407
+ **API**
408
+
409
+ ```bash
410
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
411
+ --header 'Content-Type: application/json' \
412
+ --header 'Authorization: Bearer {your_auth_token}' \
413
+ --data '{
414
+ "entity": "channels",
415
+ "action": "update",
416
+ "params": {
417
+ "channel": "<str>",
418
+ "name": "<str>"
419
+ }
420
+ }'
421
+ ```
422
+
423
+
424
+ **Parameters**
425
+
426
+ | Parameter Name | Type | Required | Description |
427
+ |----------------|------|----------|-------------|
428
+ | `channel` | `string` | Yes | Channel ID to rename |
429
+ | `name` | `string` | Yes | New channel name (lowercase, no spaces, max 80 chars) |
430
+
431
+
432
+ <details>
433
+ <summary><b>Response Schema</b></summary>
434
+
435
+ **Records**
436
+
437
+ | Field Name | Type | Description |
438
+ |------------|------|-------------|
439
+ | `id` | `string` | |
440
+ | `name` | `string \| null` | |
441
+ | `is_channel` | `boolean \| null` | |
442
+ | `is_group` | `boolean \| null` | |
443
+ | `is_im` | `boolean \| null` | |
444
+ | `is_mpim` | `boolean \| null` | |
445
+ | `is_private` | `boolean \| null` | |
446
+ | `created` | `integer \| null` | |
447
+ | `is_archived` | `boolean \| null` | |
448
+ | `is_general` | `boolean \| null` | |
449
+ | `unlinked` | `integer \| null` | |
450
+ | `name_normalized` | `string \| null` | |
451
+ | `is_shared` | `boolean \| null` | |
452
+ | `is_org_shared` | `boolean \| null` | |
453
+ | `is_pending_ext_shared` | `boolean \| null` | |
454
+ | `pending_shared` | `array \| null` | |
455
+ | `context_team_id` | `string \| null` | |
456
+ | `updated` | `integer \| null` | |
457
+ | `creator` | `string \| null` | |
458
+ | `is_ext_shared` | `boolean \| null` | |
459
+ | `shared_team_ids` | `array \| null` | |
460
+ | `pending_connected_team_ids` | `array \| null` | |
461
+ | `is_member` | `boolean \| null` | |
462
+ | `topic` | `object \| any` | |
463
+ | `purpose` | `object \| any` | |
464
+ | `previous_names` | `array \| null` | |
465
+ | `num_members` | `integer \| null` | |
466
+ | `parent_conversation` | `string \| null` | |
467
+ | `properties` | `object \| null` | |
468
+ | `is_thread_only` | `boolean \| null` | |
469
+ | `is_read_only` | `boolean \| null` | |
470
+
471
+
310
472
  </details>
311
473
 
312
474
  ### Channel Messages
@@ -549,6 +711,350 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_i
549
711
 
550
712
  </details>
551
713
 
714
+ ### Messages
715
+
716
+ #### Messages Create
717
+
718
+ Posts a message to a public channel, private channel, or direct message conversation
719
+
720
+ **Python SDK**
721
+
722
+ ```python
723
+ await slack.messages.create(
724
+ channel="<str>",
725
+ text="<str>"
726
+ )
727
+ ```
728
+
729
+ **API**
730
+
731
+ ```bash
732
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
733
+ --header 'Content-Type: application/json' \
734
+ --header 'Authorization: Bearer {your_auth_token}' \
735
+ --data '{
736
+ "entity": "messages",
737
+ "action": "create",
738
+ "params": {
739
+ "channel": "<str>",
740
+ "text": "<str>"
741
+ }
742
+ }'
743
+ ```
744
+
745
+
746
+ **Parameters**
747
+
748
+ | Parameter Name | Type | Required | Description |
749
+ |----------------|------|----------|-------------|
750
+ | `channel` | `string` | Yes | Channel ID, private group ID, or user ID to send message to |
751
+ | `text` | `string` | Yes | Message text content (supports mrkdwn formatting) |
752
+ | `thread_ts` | `string` | No | Thread timestamp to reply to (for threaded messages) |
753
+ | `reply_broadcast` | `boolean` | No | Also post reply to channel when replying to a thread |
754
+ | `unfurl_links` | `boolean` | No | Enable unfurling of primarily text-based content |
755
+ | `unfurl_media` | `boolean` | No | Enable unfurling of media content |
756
+
757
+
758
+ <details>
759
+ <summary><b>Response Schema</b></summary>
760
+
761
+ **Records**
762
+
763
+ | Field Name | Type | Description |
764
+ |------------|------|-------------|
765
+ | `type` | `string \| null` | |
766
+ | `subtype` | `string \| null` | |
767
+ | `text` | `string \| null` | |
768
+ | `ts` | `string` | |
769
+ | `user` | `string \| null` | |
770
+ | `bot_id` | `string \| null` | |
771
+ | `app_id` | `string \| null` | |
772
+ | `team` | `string \| null` | |
773
+ | `bot_profile` | `object \| any` | |
774
+
775
+
776
+ </details>
777
+
778
+ #### Messages Update
779
+
780
+ Updates an existing message in a channel
781
+
782
+ **Python SDK**
783
+
784
+ ```python
785
+ await slack.messages.update(
786
+ channel="<str>",
787
+ ts="<str>",
788
+ text="<str>"
789
+ )
790
+ ```
791
+
792
+ **API**
793
+
794
+ ```bash
795
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
796
+ --header 'Content-Type: application/json' \
797
+ --header 'Authorization: Bearer {your_auth_token}' \
798
+ --data '{
799
+ "entity": "messages",
800
+ "action": "update",
801
+ "params": {
802
+ "channel": "<str>",
803
+ "ts": "<str>",
804
+ "text": "<str>"
805
+ }
806
+ }'
807
+ ```
808
+
809
+
810
+ **Parameters**
811
+
812
+ | Parameter Name | Type | Required | Description |
813
+ |----------------|------|----------|-------------|
814
+ | `channel` | `string` | Yes | Channel ID containing the message |
815
+ | `ts` | `string` | Yes | Timestamp of the message to update |
816
+ | `text` | `string` | Yes | New message text content |
817
+
818
+
819
+ <details>
820
+ <summary><b>Response Schema</b></summary>
821
+
822
+ **Records**
823
+
824
+ | Field Name | Type | Description |
825
+ |------------|------|-------------|
826
+ | `type` | `string \| null` | |
827
+ | `subtype` | `string \| null` | |
828
+ | `text` | `string \| null` | |
829
+ | `ts` | `string` | |
830
+ | `user` | `string \| null` | |
831
+ | `bot_id` | `string \| null` | |
832
+ | `app_id` | `string \| null` | |
833
+ | `team` | `string \| null` | |
834
+ | `bot_profile` | `object \| any` | |
835
+
836
+
837
+ </details>
838
+
839
+ ### Channel Topics
840
+
841
+ #### Channel Topics Create
842
+
843
+ Sets the topic for a channel
844
+
845
+ **Python SDK**
846
+
847
+ ```python
848
+ await slack.channel_topics.create(
849
+ channel="<str>",
850
+ topic="<str>"
851
+ )
852
+ ```
853
+
854
+ **API**
855
+
856
+ ```bash
857
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
858
+ --header 'Content-Type: application/json' \
859
+ --header 'Authorization: Bearer {your_auth_token}' \
860
+ --data '{
861
+ "entity": "channel_topics",
862
+ "action": "create",
863
+ "params": {
864
+ "channel": "<str>",
865
+ "topic": "<str>"
866
+ }
867
+ }'
868
+ ```
869
+
870
+
871
+ **Parameters**
872
+
873
+ | Parameter Name | Type | Required | Description |
874
+ |----------------|------|----------|-------------|
875
+ | `channel` | `string` | Yes | Channel ID to set topic for |
876
+ | `topic` | `string` | Yes | New topic text (max 250 characters) |
877
+
878
+
879
+ <details>
880
+ <summary><b>Response Schema</b></summary>
881
+
882
+ **Records**
883
+
884
+ | Field Name | Type | Description |
885
+ |------------|------|-------------|
886
+ | `id` | `string` | |
887
+ | `name` | `string \| null` | |
888
+ | `is_channel` | `boolean \| null` | |
889
+ | `is_group` | `boolean \| null` | |
890
+ | `is_im` | `boolean \| null` | |
891
+ | `is_mpim` | `boolean \| null` | |
892
+ | `is_private` | `boolean \| null` | |
893
+ | `created` | `integer \| null` | |
894
+ | `is_archived` | `boolean \| null` | |
895
+ | `is_general` | `boolean \| null` | |
896
+ | `unlinked` | `integer \| null` | |
897
+ | `name_normalized` | `string \| null` | |
898
+ | `is_shared` | `boolean \| null` | |
899
+ | `is_org_shared` | `boolean \| null` | |
900
+ | `is_pending_ext_shared` | `boolean \| null` | |
901
+ | `pending_shared` | `array \| null` | |
902
+ | `context_team_id` | `string \| null` | |
903
+ | `updated` | `integer \| null` | |
904
+ | `creator` | `string \| null` | |
905
+ | `is_ext_shared` | `boolean \| null` | |
906
+ | `shared_team_ids` | `array \| null` | |
907
+ | `pending_connected_team_ids` | `array \| null` | |
908
+ | `is_member` | `boolean \| null` | |
909
+ | `topic` | `object \| any` | |
910
+ | `purpose` | `object \| any` | |
911
+ | `previous_names` | `array \| null` | |
912
+ | `num_members` | `integer \| null` | |
913
+ | `parent_conversation` | `string \| null` | |
914
+ | `properties` | `object \| null` | |
915
+ | `is_thread_only` | `boolean \| null` | |
916
+ | `is_read_only` | `boolean \| null` | |
917
+
918
+
919
+ </details>
920
+
921
+ ### Channel Purposes
922
+
923
+ #### Channel Purposes Create
924
+
925
+ Sets the purpose for a channel
926
+
927
+ **Python SDK**
928
+
929
+ ```python
930
+ await slack.channel_purposes.create(
931
+ channel="<str>",
932
+ purpose="<str>"
933
+ )
934
+ ```
935
+
936
+ **API**
937
+
938
+ ```bash
939
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
940
+ --header 'Content-Type: application/json' \
941
+ --header 'Authorization: Bearer {your_auth_token}' \
942
+ --data '{
943
+ "entity": "channel_purposes",
944
+ "action": "create",
945
+ "params": {
946
+ "channel": "<str>",
947
+ "purpose": "<str>"
948
+ }
949
+ }'
950
+ ```
951
+
952
+
953
+ **Parameters**
954
+
955
+ | Parameter Name | Type | Required | Description |
956
+ |----------------|------|----------|-------------|
957
+ | `channel` | `string` | Yes | Channel ID to set purpose for |
958
+ | `purpose` | `string` | Yes | New purpose text (max 250 characters) |
959
+
960
+
961
+ <details>
962
+ <summary><b>Response Schema</b></summary>
963
+
964
+ **Records**
965
+
966
+ | Field Name | Type | Description |
967
+ |------------|------|-------------|
968
+ | `id` | `string` | |
969
+ | `name` | `string \| null` | |
970
+ | `is_channel` | `boolean \| null` | |
971
+ | `is_group` | `boolean \| null` | |
972
+ | `is_im` | `boolean \| null` | |
973
+ | `is_mpim` | `boolean \| null` | |
974
+ | `is_private` | `boolean \| null` | |
975
+ | `created` | `integer \| null` | |
976
+ | `is_archived` | `boolean \| null` | |
977
+ | `is_general` | `boolean \| null` | |
978
+ | `unlinked` | `integer \| null` | |
979
+ | `name_normalized` | `string \| null` | |
980
+ | `is_shared` | `boolean \| null` | |
981
+ | `is_org_shared` | `boolean \| null` | |
982
+ | `is_pending_ext_shared` | `boolean \| null` | |
983
+ | `pending_shared` | `array \| null` | |
984
+ | `context_team_id` | `string \| null` | |
985
+ | `updated` | `integer \| null` | |
986
+ | `creator` | `string \| null` | |
987
+ | `is_ext_shared` | `boolean \| null` | |
988
+ | `shared_team_ids` | `array \| null` | |
989
+ | `pending_connected_team_ids` | `array \| null` | |
990
+ | `is_member` | `boolean \| null` | |
991
+ | `topic` | `object \| any` | |
992
+ | `purpose` | `object \| any` | |
993
+ | `previous_names` | `array \| null` | |
994
+ | `num_members` | `integer \| null` | |
995
+ | `parent_conversation` | `string \| null` | |
996
+ | `properties` | `object \| null` | |
997
+ | `is_thread_only` | `boolean \| null` | |
998
+ | `is_read_only` | `boolean \| null` | |
999
+
1000
+
1001
+ </details>
1002
+
1003
+ ### Reactions
1004
+
1005
+ #### Reactions Create
1006
+
1007
+ Adds a reaction (emoji) to a message
1008
+
1009
+ **Python SDK**
1010
+
1011
+ ```python
1012
+ await slack.reactions.create(
1013
+ channel="<str>",
1014
+ timestamp="<str>",
1015
+ name="<str>"
1016
+ )
1017
+ ```
1018
+
1019
+ **API**
1020
+
1021
+ ```bash
1022
+ curl --location 'https://api.airbyte.ai/api/v1/connectors/sources/{your_source_id}/execute' \
1023
+ --header 'Content-Type: application/json' \
1024
+ --header 'Authorization: Bearer {your_auth_token}' \
1025
+ --data '{
1026
+ "entity": "reactions",
1027
+ "action": "create",
1028
+ "params": {
1029
+ "channel": "<str>",
1030
+ "timestamp": "<str>",
1031
+ "name": "<str>"
1032
+ }
1033
+ }'
1034
+ ```
1035
+
1036
+
1037
+ **Parameters**
1038
+
1039
+ | Parameter Name | Type | Required | Description |
1040
+ |----------------|------|----------|-------------|
1041
+ | `channel` | `string` | Yes | Channel ID containing the message |
1042
+ | `timestamp` | `string` | Yes | Timestamp of the message to react to |
1043
+ | `name` | `string` | Yes | Reaction emoji name (without colons, e.g., "thumbsup") |
1044
+
1045
+
1046
+ <details>
1047
+ <summary><b>Response Schema</b></summary>
1048
+
1049
+ **Records**
1050
+
1051
+ | Field Name | Type | Description |
1052
+ |------------|------|-------------|
1053
+ | `ok` | `boolean` | |
1054
+
1055
+
1056
+ </details>
1057
+
552
1058
 
553
1059
 
554
1060
  ## Authentication