MarketingAppExtension
プロスペクトの外部活動を生成するサードパーティアプリケーションまたはサービスとの統合を表します。
親種別
Metadata メタデータ型を拡張し、その fullName 項目を継承します。
ファイルのサフィックスおよびディレクトリの場所
MarketingAppExtension コンポーネントのサフィックスは .marketingappextension で、marketingappextensions フォルダに保存されます。
バージョン
MarketingAppExtension コンポーネントは、API バージョン 54.0 以降で使用できます。
特別なアクセスルール
組織でマーケティングアプリケーションの拡張機能に最初にアクセスする Salesforce システム管理者または指定されたマーケティング管理者は「公開リストビューの管理」ユーザ権限を持っている必要があります。その後この機能を使用するユーザにはこの権限は必要ありません。
項目
| 項目名 | 説明 |
|---|---|
| description |
|
| isActive |
|
| isProtected |
|
| marketingAppExtActivities |
|
| masterLabel |
|
MarketingAppExtActivity
サードパーティアプリケーション内で発生したプロスペクト活動であり、Pardot オートメーションで使用できる活動種別を表します。
| 項目名 | 説明 |
|---|---|
| description |
|
| endpointUrl |
|
| isActive |
|
| isProtected |
|
| marketingAppExtension |
|
| masterLabel |
|
宣言的なメタデータの定義のサンプル
拡張機能に関連付けられたすべての活動種別を取得する MarketingAppExtension コンポーネントの例を次に示します。
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>前の定義を参照する package.xml の例を次に示します。
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>関連付けられた拡張機能から特定の活動種別を取得する MarketingAppExtension コンポーネントの例を次に示します。
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>前の定義を参照する package.xml の例を次に示します。
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>マニフェストファイル内のワイルドカードのサポート
このメタデータ型では、package.xml マニフェストファイル内のワイルドカード文字 * (アスタリスク) がサポートされます。マニフェストファイルの使用についての詳細は、「zip ファイルを使用したメタデータのリリースと取得」を参照してください。