---
title: "Refresh Thread Messages"
method: POST
path: "/slack/refresh-thread"
---

# Refresh Thread Messages

`POST /slack/refresh-thread`

Live-fetch thread messages from Slack and return them.

Calls conversations_replies directly (rather than
get_all_conversation_replies) so the parent message is included.

## Request body

- RefreshThreadMessagesRequest — Request model for live-fetching thread messages from Slack.
  - `organization_id` string, required
  - `slack_channel_id` string, required
  - `thread_ts` string, required

## Response `200`

Successful Response

- TraversalDaosSlackMessageDaoSlackChatMessage[]
  - `id` string, required
  - `created_at` string, date-time, required
  - `slack_channel_id` string, required
  - `ts` string, required
  - `sent_at` string, date-time, nullable
  - `edited_at` string, date-time, nullable
  - `thread_ts` string, nullable, required
  - `slack_user_id` string, nullable, required
  - `message` string, nullable, required
  - `blocks` object[], required
  - `attachments` object[], required
  - `bot_id` string, nullable, required
  - `reactions` object[], required
  - `files` object[], required
  - `type` string, nullable, required
  - `subtype` string, nullable, required
  - `raw` object, nullable, required
  - `permalink` string, nullable
  - `last_updated_at` string, date-time, required
  - `deleted_at` string, date-time, nullable, required
  - `is_private` boolean, nullable
  - `is_dm` boolean, nullable
  - `user_id_to_display_name` object
  - `user_id_to_profile_photo_url` object
  - `channel_id_to_display_name` object

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/traversal/apis/fastapi.md) · [All operations](https://skmtc.net/traversal/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/traversal/fastapi/revisions/2134ebffd1ef/schema)
