How to delete messages posted to slack after sometime?

1.1k Views Asked by At

I have a slack bot that is sending direct messages to users. I want to add a functionality that will delete the message automatically 10 minutes after it has been sent. Please help.

1

There are 1 best solutions below

4
On

There is an api that is used to delete chat messages :

https://api.slack.com/methods/chat.delete

For your use case, you need to capture the channel & timestamp details from the response of message that was sent. Once the message is sent, wait for required time and then call 'chat.delete' api to delete the message.