[SalesForce] How do we create a chatter group for a particular object

How do we create a chatter group for a custom object. In that group I want to post feed comments and feed posts regarding to that particular custom object and display in that group.

Best Answer

I believe chatter groups can't be specific to an object or record only. One possible way to achieve this could be via Apex triggers i.e.

  1. Create a private group via apex or manually
  2. Make required users follow the group programmatically based on your biz rules.
  3. Trigger on FeedItem or specific object to programmatically post/share object required updates on the group
Related Topic