I get hunderds of notifcations when an automation has updated a record:
"Automation updated table-name record-title"
And also notifications when another user update a record:
"user-name updated table-name record-title"
As you can see, I unticked all the notification preferences weeks ago, but the notifications keep coming.
What am I missing here?
I also receive notifications from automation actions, even though I have silent mode set for them.
Luis
3
For the automations, you need to make sure “Silent” is on. You need to do this for all automations individually.
If you are calling the Tape API directly via “Execute Script” automation, then you need to add
{ silent: true }. It looks something like this:
await tape.RecordCommentOrReplyReply.create(commentId,
{
value: `Example comment.`
},
{ silent: true }
);
Thank you Luis, I didn’t know it was that simple.
1 Like