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
AndrewTaylorAndrewTaylor 

Org Default FlexiPage - How is this set in the MetaData API?

How is the org default flexipage set in the metadata API? I can see how to do overrides for specific applications, but not how to set the Org Default itself.
Alwin van Dijken 7DotsAlwin van Dijken 7Dots
Hi,
I'm having the same problem for deploying the org default. 
in the *.app you can define:
<actionOverrides> (App Default)
<profileActionOverrides> (App,Record Type, and Profile)
but I don't see the org default

My solution is to use the App default
 
Andreas Koefoed Nielsen 7Andreas Koefoed Nielsen 7
The metadata is located in the .object file if the flexipage is activated as org default.
<actionOverrides>
        <actionName>View</actionName>
        <comment>Action override created by Lightning App Builder during activation.</comment>
        <content>NAME_OF_FLEXIPAGE</content>
        <formFactor>Large</formFactor>
        <skipRecordTypeSelect>false</skipRecordTypeSelect>
        <type>Flexipage</type>
    </actionOverrides>