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
FandangoFandango 

Account.get/set Last ModifiedById

Does this field get modified automatically when a query is launched via webservice ?

If yes, is there a way to disable this feature for select calls ?

Thanks
SuperfellSuperfell
No, calling the query api won't change the lastmodified date/by
FandangoFandango
One more question: Can I update this field from a field in some other table or basically, I'd like to update this field with a string constant when its updated via webservice. I think this field gets automatically updated with the id used for the connection. Am I right ?


Thanks
SuperfellSuperfell
Correct, this is automatically populated based on the userId making the call, you can't overwrite it. All you can do is give your API user a name that makes it look like the API user (e.g. make its firstname/lastname Integration User)
FandangoFandango
Thanks.