- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2025 04:05 AM
Hello all,
We have created a flow using slack scope where we are posting a message in slack channel so after waiting of 2 hours another message should get post on previous message thread on the same channel.
Please help me on this!!!
Thank you in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago - last edited 3 hours ago
Hello
Posting the step by step guide on how to post the thread message on slack, if this help you please mark as helpfull. ✔️
Step 1: Create a copy of the original "Post Message" action in Flow Designer.
Step 2: Add a new input variable in the action called timestamp (this will hold Slack's ts value).
Update the Create Payload script to include this input if provided:
Step 3: In Post Processing, add logic to capture Slack's response and extract the ts:
Step 4: Create an output variable in Post Processing called message_ts.
Step 5: Add this output variable (ts) to the action's Outputs section so it can be used in flows.
Step 6: When posting the first message, capture:
- Slack Channel ID
- Message Timestamp (ts)
Store these values (e.g., on the Incident record).
When posting a follow-up message after 2 hours, use:
- The same channel ID
- The saved thread_ts (timestamp) in your copied Post Message action
This ensures the follow-up message appears in the same thread.
✅This new action will allow you to post messages in Slack threads using Flow Designer.
💡Please mark my answer correct and helpful if this works for you ✔️
Thanks and Regards,
Aakanksha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2025 08:30 AM - edited 09-21-2025 12:17 AM
@kaushal_snow
For now I updated my task record manulay with one of my previous message time stamp and added use that timestamp on the message by using data pill. Still the message is posting individually and not as thread.
Please help me with this!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2025 10:37 AM
H @aakankshapl,
Steps in Flow Designer
Trigger → Event of your choice (e.g., Incident Created).
Action 1 → Slack – Post Message to Channel
Input: Channel, Message text.
Capture output: ts (message timestamp).
Flow Logic → Wait
Duration: 2 hours.
Action 2 → Slack – Post Message to Channel
Input: Same Channel.
Message text: Follow-up content.
Advanced input: thread_ts = ts from Action 1 output.
Key Notes
Without thread_ts, message will post as a new thread.
Ensure Slack app has chat:write scope for both channels and threads.
Add error handling in case Action 1 fails (no ts available).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2025 11:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 hours ago - last edited 3 hours ago
Hello
Posting the step by step guide on how to post the thread message on slack, if this help you please mark as helpfull. ✔️
Step 1: Create a copy of the original "Post Message" action in Flow Designer.
Step 2: Add a new input variable in the action called timestamp (this will hold Slack's ts value).
Update the Create Payload script to include this input if provided:
Step 3: In Post Processing, add logic to capture Slack's response and extract the ts:
Step 4: Create an output variable in Post Processing called message_ts.
Step 5: Add this output variable (ts) to the action's Outputs section so it can be used in flows.
Step 6: When posting the first message, capture:
- Slack Channel ID
- Message Timestamp (ts)
Store these values (e.g., on the Incident record).
When posting a follow-up message after 2 hours, use:
- The same channel ID
- The saved thread_ts (timestamp) in your copied Post Message action
This ensures the follow-up message appears in the same thread.
✅This new action will allow you to post messages in Slack threads using Flow Designer.
💡Please mark my answer correct and helpful if this works for you ✔️
Thanks and Regards,
Aakanksha
