swit-message-comment-list
Fetch comments associated with a specific message in Swit workspaces using message ID. Supports pagination to manage large datasets efficiently.
Instructions
Retrieve list of comments on message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
message_id | Yes | ||
offset | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"message_id": {
"type": "string"
},
"offset": {
"type": "string"
}
},
"required": [
"message_id"
],
"type": "object"
}