Newer Version Available
MarketingAppExtension
Parent Type
File Suffix and Directory Location
MarketingAppExtension components have the suffix .marketingappextension and are stored in the marketingappextensions folder.
Version
MarketingAppExtension components are available in API version 54.0 and later.
Special Access Rules
The first Salesforce or designated marketing admin to access Marketing App Extensions in an org must have the Manage Public List Views user permission. Subsequent users don’t need the permission to work with the feature.
Fields
| Field Name | Description |
|---|---|
| description |
|
| isActive |
|
| isProtected |
|
| marketingAppExtActivities |
|
| masterLabel |
|
MarketingAppExtActivity
Represents an Activity Type, which is a prospect activity that occurs in a third-party app and can be used in Pardot automations.
| Field Name | Description |
|---|---|
| description |
|
| endpointUrl |
|
| isActive |
|
| isProtected |
|
| marketingAppExtension |
|
| masterLabel |
|
Declarative Metadata Sample Definition
The following is an example of a MarketingAppExtension component that retrieves all Activity Types associated with the extension.
1<?xml version="1.0" encoding="UTF-8"?>
2<MarketingAppExtension xmlns="http://soap.sforce.com/2006/04/metadata">
3 <description>VidLand extension for US region</description>
4 <isActive>true</isActive>
5 <marketingAppExtActivities>
6 <fullName>user_attended</fullName>
7 <description>User attended activity capture for VidLand</description>
8 <isActive>true</isActive>
9 <marketingAppExtension>VidLand_US</marketingAppExtension>
10 <masterLabel>user attended</masterLabel>
11 </marketingAppExtActivities>
12 <marketingAppExtActivities>
13 <fullName>user_registered</fullName>
14 <description>User registered activity capture for VidLand</description>
15 <isActive>true</isActive>
16 <marketingAppExtension>VidLand_US</marketingAppExtension>
17 <masterLabel>user registered</masterLabel>
18 </marketingAppExtActivities>
19 <masterLabel>VidLand_US</masterLabel>
20</MarketingAppExtension>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3~ Copyright 2021 Salesforce, Inc.
4~ All Rights Reserved
5~ Company Confidential
6-->
7<Package xmlns="http://soap.sforce.com/2006/04/metadata">
8<types>
9<members>VidLand_US</members>
10<name>MarketingAppExtension</name>
11</types>
12</Package>The following is an example of a MarketingAppExtension componant that retrieves a specific Activity Type from the associated extension.
1<?xml version="1.0" encoding="UTF-8"?>
2<MarketingAppExtension xmlns="http://soap.sforce.com/2006/04/metadata">
3 <description>VidLand extension for US region</description>
4 <isActive>true</isActive>
5 <marketingAppExtActivities>
6 <fullName>user_attended</fullName>
7 <description>User attended activity capture for VidLand</description>
8 <isActive>true</isActive>
9 <marketingAppExtension>VidLand_US</marketingAppExtension>
10 <masterLabel>user attended</masterLabel>
11 </marketingAppExtActivities>
12 <masterLabel>VidLand_US</masterLabel>
13</MarketingAppExtension>The following is an example package.xml that references the previous definition.
1<<?xml version="1.0" encoding="UTF-8"?>
2<!--
3~ Copyright 2021 salesforce.com, inc.
4~ All Rights Reserved
5~ Company Confidential
6-->
7<Package xmlns="http://soap.sforce.com/2006/04/metadata">
8<types>
9<members>VidLand_US.user_attended</members>
10<name>MarketingAppExtActivity</name>
11</types>
12<types>
13<members>VidLand_US</members>
14<name>MarketingAppExtension</name>
15</types>
16</Package>Wildcard Support in the Manifest File
This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.