Name

global.AJAXFollowNotification

Description

It has the scriptable APIS needed to subscribe and unscubscribe the users from live feed tables.

Script

var AJAXFollowNotification = Class.create();
AJAXFollowNotification.prototype = {
  initialize: function() {
  },
  subscribeUser: function(table, recordSysID) {
  	new GlideappLiveFeedUIAction().followLiveFeed(table, recordSysID);
  },
  unSubscribeUser: function(recordSysID, userId) {
  	new GlideappLiveFeedUIAction().unfollowLiveFeed(recordSysID, userId);
  },
  type: 'AJAXFollowNotification'
};

Sys ID

73202944772111102db61558ca5a99a5

Offical Documentation

Official Docs: