function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Michael MMichael M 

How to track all chatter messages that I sent in once place

Hello, one of our users wants to be able to see all of the chatter messages that she sent, all in one place. Is there a way to do that?
Best Answer chosen by Michael M
ANUTEJANUTEJ (Salesforce Developers) 
Hi Michael,

>> https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_feedcomment.htm

Feed comment is the object represents a comment added to a feed by a user, this object has a field named InsertedById which holds id of user you can query on this to get these comments.

Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.  

Thanks.

All Answers

ANUTEJANUTEJ (Salesforce Developers) 
Hi Michael,

>> https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_feedcomment.htm

Feed comment is the object represents a comment added to a feed by a user, this object has a field named InsertedById which holds id of user you can query on this to get these comments.

Let me know if it helps you and close your query by marking it as solved so that it can help others in the future.  

Thanks.
This was selected as the best answer
Michael MMichael M
Good to know! thank you!