LiveMessageSettings

Represents an org’s LiveMessage settings.

Version

LiveMessageSettings components are available in API version 42.0 and later.

File Suffix and Directory Location

LiveMessageSettings values are stored in the LiveMessage.settings file in the settings folder. The .settings files are different from other named components because there is only one settings file for each settings component.

Fields

Field Name Field Type Description
enableCheckCEUserPerm boolean Gives access to ConversationEntry objects only to users with the Access Conversation Entries user permission enabled (true) or to all users (false) in an org.

For orgs created before API version 50.0, the default value is false.

For orgs created on or after API version 50.0, the default value is true.

enableLiveMessage boolean Turns LiveMessage on (true) or off (false) in an org. The default value is false.

Declarative Metadata Sample Definition

The following is an example of a liveMessageSettings component.

<?xml version="1.0" encoding="UTF-8"?>
<LiveMessageSettings xmlns="http://soap.sforce.com/2006/04/metadata">
   <enableLiveMessage>true</enableLiveMessage>
</LiveMessageSettings>
The following is an example package.xml that references the previous definition.
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
    <types>
        <members>LiveMessage</members>
        <name>Settings</name>
    </types>
    <version>44.0</version>
</Package>

Wildcard Support in the Manifest File

The wildcard character * (asterisk) in the package.xml manifest file doesn’t apply to metadata types for feature settings. The wildcard applies only when retrieving all settings, not for an individual setting. For details, see Settings. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.