MarketingAppExtension
親種別
ファイルのサフィックスおよびディレクトリの場所
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>MarketingAppExtAction
サードパーティアプリケーションで実行され、Engagement Studio プログラムで使用できるアクションであるアクション種別を表します。
| 項目名 | 説明 |
|---|---|
| actionName |
|
| actionParams |
|
| actionSchema |
|
| actionSelector |
|
| apiName |
|
| Description |
|
| isActive |
|
| isProtected |
|
| marketingAppExtension |
|
宣言的なメタデータの定義のサンプル
拡張機能に関連付けられた特定のアクションを取得する MarketingAppExtension コンポーネントの例を次に示します。
1<?xml version="1.0" encoding="UTF-8"?>
2<MarketingAppExtension xmlns="http://soap.sforce.com/2006/04/metadata">
3 <fullName>VidLand_US</fullName>
4 <description>VidLand extension for US region</description>
5 <isActive>true</isActive>
6 <marketingAppExtActions>
7 <marketingAppExtension>VidLand_US</marketingAppExtension>
8 <apiName>register_user</apiName>
9 <isActive>true</isActive>
10 <description>Register User for VidLand</description>>
11 <actionSelector>VidLand_Register_User</actionSelector>
12 <actionSchema>
13
14 {
15 "properties": {
16 "UserId": {
17 "type": "string",
18 "title": ""
19 },
20 "WebinarId": {
21 "type": "string",
22 "value": "webinarIdXYZ"
23 }
24 },
25 "view": {
26 "components": [{
27 "definition": "lightning/control",
28 "scope": "#/properties/UserId"
29 }]
30 },
31 "required": [
32 "UserId",
33 "WebinarId",
34 "From",
35 "Body"
36 ]
37 }
38
39 </actionSchema>
40 <actionParams>
41
42 {
43 "isStandard": false,
44 "type": "apex"
45 }
46
47 </actionParams>
48 <actionName>Register User</actionName>
49 </marketingAppExtActions>
50 <masterLabel>VidLand US</masterLabel>
51</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</members>
10<name>MarketingAppExtension</name>
11</types>
12</Package>マニフェストファイル内のワイルドカードのサポート
このメタデータ型では、package.xml マニフェストファイル内のワイルドカード文字 * (アスタリスク) がサポートされます。マニフェストファイルの使用についての詳細は、「zip ファイルを使用したメタデータのリリースと取得」を参照してください。