You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Apps Script Community
I found this bit of script here to create new tasks. I'd like to know if it's possible to also add these tasks to a given space on Google Chat. Also, can we assign them to a specific member of that space and set a due date?
Thank you so much for your time.
/** * Adds a task to a tasklist. * @param {string} taskListId The tasklist to add to. */ function addTask(taskListId) { var task = { title: 'Pick up dry cleaning', notes: 'Remember to get this done!' }; task = Tasks.Tasks.insert(task, taskListId); Logger.log('Task with ID "%s" was created.', task.id); }