Skip to main content

Edit message

Edits the content of an existing message

Function EditMessage(Val Token, Val Channel, Val Timestamp, Val Text = "", Val BlockArray = "") Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
Channel--channelStringChannel ID
Timestamp--stampStringMessage timestamp
Text--textStringNew message text
BlockArray--blocksArray of StructureJSON array of block descriptions

Returns: Map Of KeyAndValue - Serialized JSON response from Slack


Code example
  
Channel = "C070VPMKN8J";
Timestamp = "1714146538.221929";
Text = "TestMessage2";

Response = OPI_Slack.EditMessage(Token, Channel, Timestamp, Text); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint slack EditMessage --token %token% --channel "C070VPMKN8J" --stamp "1714146538.221929" --text "TestMessage2" --blocks %blocks%

Result
{
"ok": true,
"channel": "C06UFNUTKUL",
"ts": "1714146538.221929",
"message": {
"user": "U06UG1CAYH2",
"type": "message",
"ts": "1714146538.221929",
"bot_id": "B06TZ0MJV5M",
"app_id": "A06TYNH45RV",
"text": "TestMessage2",
"team": "T06UD92BS3C",
"bot_profile": {
"id": "B06TZ0MJV5M",
"app_id": "A06TYNH45RV",
"name": "OpenIntegrations",
"icons": {
"image_36": "https://a.slack-edge.com/80588/img/plugins/app/bot_36.png",
"image_48": "https://a.slack-edge.com/80588/img/plugins/app/bot_48.png",
"image_72": "https://a.slack-edge.com/80588/img/plugins/app/service_72.png"
},
"deleted": false,
"updated": 1713205238,
"team_id": "T06UD92BS3C"
},
"blocks": [
{
"type": "rich_text",
"block_id": "MO6",
"elements": [
{
"type": "rich_text_section",
"elements": [
{
"type": "text",
"text": "TestMessage2"
}
]
}
]
}
]
}
}