IntegrationsMicrosoft teamsActions
List Microsoft Teams channel message replies
List replies to a channel message.
channel_messages.replies.list · Microsoft Teams · v1
Details
Scopes
ChannelMessage.Read.All
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
channel_id | string | Yes | minLength 1; maxLength 128 |
message_id | string | Yes | minLength 1; maxLength 128 |
cursor | string | No | minLength 1; maxLength 2048 |
limit | integer | No | minimum 1; maximum 50 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
messages | array<object> | Yes | — |
messages[] | object | Yes | additionalProperties false |
messages[].id | string | Yes | — |
messages[].body_content | string | Yes | — |
messages[].body_content_type | string | Yes | enum text | html |
messages[].from_user_id | string | No | — |
messages[].created_at | string | No | — |
messages[].web_url | string | No | — |
messages[].reply_to_id | string | No | — |
next_cursor | string | No | minLength 1; maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"team_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"channel_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"message_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"required": [
"team_id",
"channel_id",
"message_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"messages": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"body_content": {
"type": "string"
},
"body_content_type": {
"type": "string",
"enum": [
"text",
"html"
]
},
"from_user_id": {
"type": "string"
},
"created_at": {
"type": "string"
},
"web_url": {
"type": "string"
},
"reply_to_id": {
"type": "string"
}
},
"required": [
"id",
"body_content",
"body_content_type"
]
}
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"required": [
"messages"
]
}