Skip to main content

Delete message

Deletes a channel message by timestamp

Function DeleteMessage(Val Token, Val Channel, Val Timestamp, Val IsDelayed = False) Export

ParameterCLI optionTypeDescription
Token--tokenStringBot token
Channel--channelStringChannel ID
Timestamp--stampStringTimestamp or message ID
IsDelayed--issheduledBooleanIndicator of deleting a delayed message

Returns: Map Of KeyAndValue - Serialized JSON response from Slack


Code example
  
Channel = "C06UFNUTKUL";
Timestamp = "1714146538.221929";

Response = OPI_Slack.DeleteMessage(Token, Channel, Timestamp); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint slack DeleteMessage --token %token% --channel "C06UFNUTKUL" --stamp "1714146538.221929" --issheduled %issheduled%

Result
{
"ok": true,
"channel": "C06UFNUTKUL",
"ts": "1714146538.221929"
}