SiteDetail
Contains details for Salesforce Sites or Experience Cloud (Community Cloud) sites.
View-Specific Information
A site Id is required to query this view. To obtain the site Id:- Query the Site view; to get the list of Ids (for example, Id='0DM5e0000000XyZABC'):
SELECT Id, Name FROM Site
- Query SiteDetail for the site you want:
SELECT * FROM SiteDetail WHERE DurableId = '0DM5e0000000XyZABC'
Columns
| Name | Type | References | Description |
| Id | String | Unique identifier for the record. | |
| DurableId | String | Unique identifier for the Site object. | |
| IsRegistrationEnabled | Bool | Indicates whether the record has the RegistrationEnabled characteristic. | |
| SecureUrl | String | Field containing SecureUrl information. | |
| SOQL | String | Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. |