IntegrationsSlackActions
Get Slack thread replies
List replies in a Slack message thread. Defaults to a small page size.
messages.replies · Slack · v1
Details
Scopes
channels:historygroups:history
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
channel_id | string | Yes | minLength 1; maxLength 64 |
thread_ts | string | Yes | minLength 1; maxLength 64 |
cursor | string | No | minLength 1; maxLength 512 |
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[].ts | string | Yes | — |
messages[].text | string | Yes | — |
messages[].user | string | No | — |
messages[].bot_id | string | No | — |
messages[].thread_ts | string | No | — |
next_cursor | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"channel_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"thread_ts": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"required": [
"channel_id",
"thread_ts"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"messages": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"ts": {
"type": "string"
},
"text": {
"type": "string"
},
"user": {
"type": "string"
},
"bot_id": {
"type": "string"
},
"thread_ts": {
"type": "string"
}
},
"required": [
"ts",
"text"
]
}
},
"next_cursor": {
"type": "string"
}
},
"required": [
"messages"
]
}