get_channel_messages
Retrieve recent messages from a specific Mattermost channel with author details and pagination support for efficient message management.
Instructions
특정 채널의 최근 메시지들을 가져옵니다. 결과에는 자동으로 작성자의 이름(user_name)과 username이 포함됩니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | 채널 ID | |
page | No | 페이지 번호 (기본값: 0) | |
per_page | No | 페이지당 메시지 수 (기본값: 60) |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "채널 ID",
"type": "string"
},
"page": {
"default": 0,
"description": "페이지 번호 (기본값: 0)",
"type": "number"
},
"per_page": {
"default": 60,
"description": "페이지당 메시지 수 (기본값: 60)",
"type": "number"
}
},
"required": [
"channel_id"
],
"type": "object"
}