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
jdlforcejdlforce 

How can I get the LastModifiedById value of an object field.

Hi there! 

 

I want to get via API the Id of the user that modified an object field (when a field label has been edited for example). How do I do that? describeSObject doesn't give that information.

 

Thanks, JD 

Best Answer chosen by Admin (Salesforce Developers) 
mpiercempierce

I think the listMetadata call in the Metadata API has what you want:

FileProperties (which is what listMetadata returns) has lastModifiedById.

http://www.salesforce.com/us/developer/docs/api_meta/Content/meta_retrieveresult.htm#retrieveresult_fileproperties_title

All Answers

mpiercempierce

I think the listMetadata call in the Metadata API has what you want:

FileProperties (which is what listMetadata returns) has lastModifiedById.

http://www.salesforce.com/us/developer/docs/api_meta/Content/meta_retrieveresult.htm#retrieveresult_fileproperties_title

This was selected as the best answer
jdlforcejdlforce
Thanks!!!