From a6b600ce616791456283466a5f5de680f4893ce1 Mon Sep 17 00:00:00 2001 From: Steve Kwak Date: Wed, 8 Oct 2025 14:15:01 -0400 Subject: [PATCH 1/3] adding text attachment to the postman collection --- postman/threads-api.postman_collection.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/postman/threads-api.postman_collection.json b/postman/threads-api.postman_collection.json index c347958..a873342 100644 --- a/postman/threads-api.postman_collection.json +++ b/postman/threads-api.postman_collection.json @@ -437,6 +437,17 @@ "value": "[{\"entity_type\": \"SPOILER\",\"offset\": 0,\"length\": 4}]", "description": "Optional field to specify spoilers present in the text field.", "disabled": true + }, + { + "key": "text_attachment", + "value": "[{\"plaintext\": \"plaintext\",\"link_attachment_url\": \"https://foo.com\",\"text_with_styling_info\": \"[{\"offset\": 0,\"length\": 5, \"styling_info\": \"[\"bold\",\"italic\"]\",}]\"}]", + "description": "Attach a text attachment to your post (only available for text posts, and not compatible with polls).", + "disabled": true + }, + { + "key": "text_attachment", + "value": "{\"plaintext\":\"this is a text attachment\",\"link_attachment_url\":\"https://meta.com\",\"text_with_styling_info\":[\n{\n'offset': 10,\n'length': 4,\n'styling_info':['bold','italic']\n}]}", + "description": "Attach a text attachment to your post (only available for text posts, and not compatible with poll attachments)." } ] }, From 8559c5920e814c85843020605881bf04ea85a0bd Mon Sep 17 00:00:00 2001 From: Steve Kwak Date: Wed, 8 Oct 2025 14:17:37 -0400 Subject: [PATCH 2/3] removing duplicate entry --- postman/threads-api.postman_collection.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/postman/threads-api.postman_collection.json b/postman/threads-api.postman_collection.json index a873342..95ef7ce 100644 --- a/postman/threads-api.postman_collection.json +++ b/postman/threads-api.postman_collection.json @@ -438,12 +438,6 @@ "description": "Optional field to specify spoilers present in the text field.", "disabled": true }, - { - "key": "text_attachment", - "value": "[{\"plaintext\": \"plaintext\",\"link_attachment_url\": \"https://foo.com\",\"text_with_styling_info\": \"[{\"offset\": 0,\"length\": 5, \"styling_info\": \"[\"bold\",\"italic\"]\",}]\"}]", - "description": "Attach a text attachment to your post (only available for text posts, and not compatible with polls).", - "disabled": true - }, { "key": "text_attachment", "value": "{\"plaintext\":\"this is a text attachment\",\"link_attachment_url\":\"https://meta.com\",\"text_with_styling_info\":[\n{\n'offset': 10,\n'length': 4,\n'styling_info':['bold','italic']\n}]}", From 9254a9b8b7cdbd217052bb58daad2002690bb721 Mon Sep 17 00:00:00 2001 From: Steve Kwak Date: Wed, 8 Oct 2025 14:22:06 -0400 Subject: [PATCH 3/3] turning disabled true --- postman/threads-api.postman_collection.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postman/threads-api.postman_collection.json b/postman/threads-api.postman_collection.json index 95ef7ce..9ea796c 100644 --- a/postman/threads-api.postman_collection.json +++ b/postman/threads-api.postman_collection.json @@ -441,7 +441,8 @@ { "key": "text_attachment", "value": "{\"plaintext\":\"this is a text attachment\",\"link_attachment_url\":\"https://meta.com\",\"text_with_styling_info\":[\n{\n'offset': 10,\n'length': 4,\n'styling_info':['bold','italic']\n}]}", - "description": "Attach a text attachment to your post (only available for text posts, and not compatible with poll attachments)." + "description": "Attach a text attachment to your post (only available for text posts, and not compatible with poll attachments).", + "disabled": true } ] },