IntegrationsSlackActions
Update Slack message
Update a message authored by the installed Slack app.
messages.update · Slack · v1
Details
Scopes
chat:writechannels:historygroups:history
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
channel_id | string | Yes | minLength 1; maxLength 64 |
ts | string | Yes | minLength 1; maxLength 64 |
text | string | Yes | minLength 1; maxLength 40000 |
thread_ts | string | No | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
channel_id | string | Yes | — |
ts | string | Yes | — |
text | string | Yes | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"channel_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"ts": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 40000
},
"thread_ts": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"channel_id",
"ts",
"text"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"channel_id": {
"type": "string"
},
"ts": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"channel_id",
"ts",
"text"
]
}