We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 813e0f5 commit 6bcf7ecCopy full SHA for 6bcf7ec
docs/content/web.md
@@ -256,9 +256,21 @@ error code).
256
257
``` python
258
response = client.files_upload_v2(
259
- channel="C3UKJTQAC",
260
- file="files.pdf",
+ file="test.pdf",
261
title="Test upload",
+ channel_id="C3UKJTQAC",
262
+ initial_comment="Here is the latest version of the file!",
263
+)
264
+```
265
+
266
+If you want to share files within a thread, you can pass "thread_ts" in addition to "channel_id" as shown below:
267
268
+``` python
269
+response = client.files_upload_v2(
270
271
+ title="Test upload",
272
273
+ thread_ts="1731398999.934122",
274
initial_comment="Here is the latest version of the file!",
275
)
276
```
0 commit comments