PageReference Types

To navigate in Lightning Experience, Experience Builder sites, or the Salesforce mobile app, define a PageReference object. The PageReference type generates a unique URL format and defines attributes that apply to all pages of that type. For Experience Builder sites, depending on the page type, the PageReference property requirements can differ between LWR sites and Aura sites.

Use the PageReference object with the NavigationMixin function from the lightning/navigation module. For information about using a PageReference to navigate, see Navigate to Different Page Types.

These page reference types are supported.

  • App
  • External Record Page
  • External Record Relationship Page
  • Knowledge Article
  • Lightning Component
  • Login Page
  • Managed Content Page (Salesforce CMS)
  • Named Page (Experience Builder sites)
  • Named Page (Standard)
  • Navigation Item Page
  • Object Page
  • Record Page
  • Record Relationship Page
  • Web Page

PageReference objects are supported on a limited basis for Experience Builder sites, as noted for each type. They aren’t supported in Lightning Out.

Navigating using the PageReference objects supersedes the legacy way of using an Aura event to navigate. For example, navigate to web pages using the lightning/navigation module with the standard__webPage page type instead of using force:navigateToURL. See Migrate Events.

A standard or custom app available from the App Launcher in an org. Use this type to create custom navigation components that take users to a specific app or to a page within an app. Connected apps aren’t supported.

If you’re navigating users to a different app using a pageRef, the app opens in the same window by default. To open a link in a new tab, see the navigation service documentation.

Lightning Experience

PropertyTypeDescriptionRetired?
appTargetStringApp that you're navigating to. Pass either the appId or appDeveloperName to the appTarget.
  • The appId is the DurableId field on the AppDefinition object.
  • To form the appDeveloperName value, concatenate the app's namespace with the developer name. To find the app's developer name, navigate to the App Manager in Setup and look in the Developer Name column.
For standard apps, the namespace is standard__. For custom apps, it's c__. For managed packages, it's the namespace registered for the package.
Yes
pageRefPageREferenceIdentifies a specific location in the app you're navigating to. Pass in the pageRef and applicable attributes for that pageRef type.No

Navigate to the app’s homepage using the appId

Navigate to an object record’s page in the app using the appId

Navigate to the app’s homepage using the appDeveloperName

Navigate to an object record’s page in the app using the appDeveloperName

A page that interacts with an external record. Currently supports CMS Connect pages.

Experience Builder Aura Sites

PropertyTypeDescriptionRequired?
recordIdStringExternal record ID.Yes
objectTypeStringExternal record type. Currently only supports cms for CMS Connect.Yes
objectInfoObjectAdditional information used to identify the record for the objectType.Yes

A page that interacts with an external relationship on a particular record in the org. Currently only supports Quip Related List page.

Experience Builder Aura Sites

PropertyTypeDescriptionRequired?
recordIdStringThe 18 character record ID.Yes
objectTypeStringExternal record type. Currently only supports quip for Quip docs.Yes

A Lightning component. To make an addressable Lightning web component, embed it in an Aura component that implements the lightning:isUrlAddressable interface.

Lightning Experience, Salesforce Mobile App

PropertyTypeDescriptionRequired
componentNameStringThe Lightning component name in the format namespace__componentName.Yes

You can pass any key and value in the state object. The key must include a namespace, and the value must be a string.

A page that interacts with a Knowledge Article record.

Lightning Experience, Experience Builder sites, Salesforce Mobile App

PropertyTypeDescriptionRequired
articleTypeStringThe articleType API name of the Knowledge Article record.In Experience Builder sites, articleType is ignored.Yes
urlNameStringThe value of the urlName field on the target KnowledgeArticleVersion record. The urlName is the article's URL.Yes

A page for authentication into an Experience Builder site.

Experience Builder sites

PropertyTypeDescriptionRequired
actionNameStringA login-related action to be performed. Possible values are:
  • login
  • logout
Yes

A CMS content page in an Experience Builder site with a unique name.

Experience Builder sites

PropertyTypeDescriptionRequired
contentTypeNameStringThe name of the Salesforce CMS content type.Yes
contentKeyStringThe unique content key that identifies CMS content.Yes

A standard page used in Experience Builder sites with a unique name. If an error occurs, the error view loads and the URL isn’t updated.

Experience Builder sites

PropertyTypeDescriptionRequired
nameStringThe unique name of the Experience Builder page. The value for name is the API Name value for a supported page. The API Name field can only be defined when a new page is being created, and must be unique. If the API Name isn’t defined upon page creation, it’s automatically generated. The value of home is reserved for the landing page of any Experience Builder site in your org. Supported pages in Experience Builder sites are:
  • Home
  • Account Management
  • Contact Support
  • Error
  • Login
  • My Account
  • Top Articles
  • Topic Catalog
  • Custom page
Yes

A standard page with a unique name. If an error occurs, the error view loads and the URL isn’t updated.

Lightning Experience, Salesforce Mobile App

PropertyTypeDescriptionRequired
pageNameStringThe unique name of the page. Possible values are:
  • home
  • chatter
  • today
  • dataAssessment
  • filePreview
Yes

A page that displays the content mapped to a custom tab. Visualforce tabs, web tabs, Lightning Pages, and Lightning Component tabs are supported.

Lightning Experience, Salesforce Mobile App

PropertyTypeDescriptionRequired
apiNameStringThe unique name of the custom tab.Yes

For an example, see Navigate to Different Page Types.

A page that interacts with a standard or custom object in the org and supports standard actions for that object.

Lightning Experience, Experience Builder sites, Salesforce Mobile App

PropertyTypeDescriptionRequired
actionNameStringThe action name to invoke. Valid values include home, list, and new.In Experience Builder sites, list and home are the same.Yes
objectApiNameStringThe API name of the standard or custom object. For custom objects that are part of a managed package, prefix the custom object with ns__.Yes
PropertyTypeDescriptionRequired?
filterNameStringID or developer name of the object page. Default is Recent. Supported actions are: list.No
defaultFieldValuesStringList of key-value pairs for the default field values that you’re passing. This list is generated by the lightning/pageReferenceUtils module. Supported actions are: new.No
nooverrideStringTo use a standard action, assign this property any value, such as 1. To use an override action, don’t include this property at all. Supported actions are: home, list, new.No

For an example, see Navigate to Different Page Types.

A page that interacts with a record in the org and supports standard actions for that record.

Lightning Experience, Experience Builder sites, Salesforce Mobile App

PropertyTypeDescriptionRequired
actionNameStringThe action name to invoke. Valid values include clone, edit, and view.Experience Builder sites don’t support the values clone or edit.Yes
objectApiNameStringThe API name of the record’s object. Optional for lookups.
  • For Experience Builder LWR sites only: yes.
  • For all other containers: no.
recordIdStringThe 18 character record ID.Yes
  • State
PropertyTypeDescriptionRequired?
nooverrideStringTo use a standard action, assign this property any value, such as 1. To use an override action, don’t include this property at all.No

For an example, see Navigate to Different Page Types.

A page that interacts with a relationship on a particular record in the org. Only related lists are supported.

Lightning Experience, Experience Builder sites, Salesforce Mobile App

PropertyTypeDescriptionRequired
actionNameStringThe action name to invoke. Only view is supported.Yes
objectApiNameStringThe API name of the object that defines the relationship. Optional for lookups.
  • For Experience Builder LWR sites only: yes.
  • For all other containers: no.
recordIdStringThe 18 character record ID of the record that defines the relationship.Yes
relationshipApiNameStringThe API name of the object’s relationship field.Yes

For an example, see Navigate to Different Page Types.

An external URL.

If you use your Lightning web component in an Aura-based Experience Builder site, note that certain Salesforce URLs have site-specific processing. For example, /apex/ URLs are translated to /sfdcpage/. The Visualforce page is embedded within the site in an iFrame, which is the same behavior as with the force:navigateToURL Aura event. Use window.open if you want to go straight to the URL, such as opening /apex/ directly in a new tab.

Lightning Experience, Experience Builder sites, Salesforce Mobile App

PropertyTypeDescriptionRequired
urlStringThe URL of the page you’re navigating to.Yes

For an example, see Navigate to Different Page Types.

See Also