Making a message reminder like Slack's with Google Chat API and Google Apps Scripts

Viewed 773

I am making a Google Apps Script that interacts with the Google Chat API, I see that I can make ui changes in Google Sheets with Google Scripts. Is there a way to create the same ui interaction as Slack's message reminder inside Google Chat? Here is the link: https://slack.com/help/articles/208423427-Set-a-reminder

1 Answers

Solution

You could use Google Chat API to create a chatbot which uses the methods create() of the class spaces.messages to create messages of the type Event.In that way you could share in a chat room or a group room event reminders that you can set at a certain time and users can receive them as messages to their chat by the bot.

I hope this has helped you. Let me know if you need anything else or if you did not understood something. :)

Related