slack_get_thread_replies
Retrieve all message replies from a Slack thread using channel ID and parent message timestamp to access conversation history.
Instructions
Get all replies in a message thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | The ID of the channel containing the thread | |
thread_ts | Yes | The timestamp of the parent message in the format '1234567890.123456'. Timestamps in the format without the period can be converted by adding the period such that 6 numbers come after it. |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "The ID of the channel containing the thread",
"type": "string"
},
"thread_ts": {
"description": "The timestamp of the parent message in the format '1234567890.123456'. Timestamps in the format without the period can be converted by adding the period such that 6 numbers come after it.",
"type": "string"
}
},
"required": [
"channel_id",
"thread_ts"
],
"type": "object"
}