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
Tony RissoneTony Rissone 

Flexipage view created by or last edited by?

Is it possible to somehow query and find who's touched specific flexipages?
VinayVinay (Salesforce Developers) 
Hi Tony,

Please try below query for lightning component and this should help you.

SELECT ApiVersion,CreatedById,CreatedDate,Description,DeveloperName,Id,IsDeleted,Language,LastModifiedById,LastModifiedDate,MasterLabel,NamespacePrefix FROM AuraDefinitionBundle WHERE DeveloperName = 'StandardEdit'

Hope above information was helpful.

Please mark as Best Answer so that it can help others in the future.

Thanks,
Vinay Kumar
Andrew HoveyAndrew Hovey
As of API version 55, there does not appear to be any way to query CreatedById or LastModifiedById for FlexiPages.
FlexiPage is not an object that is accessible by SOQL, and it is not an available field when querying with the Tooling API (although CreatedDate is, as is the case for several types you can query with the Tooling API).
I would love to see more support for CreatedById/LastModifiedById in both SOQL and Tooling API when querying metadata.