get_post_thread
Retrieve the complete thread of a specific Mattermost post, including author names and usernames for comprehensive conversation context.
Instructions
특정 게시물의 전체 스레드를 가져옵니다. 결과에는 자동으로 작성자의 이름(user_name)과 username이 포함됩니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes | 게시물 ID |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"description": "게시물 ID",
"type": "string"
}
},
"required": [
"post_id"
],
"type": "object"
}