LandingPageTemplates
Marketo の組織のLandingPageTemplates を作成、更新、削除、クエリします。
テーブル固有の情報
Select
Note: すべてのフィルター可能なカラムは、'=' 演算子で指定する必要があります。
ターゲットインスタンスから、アクセス可能なランディングページテンプレートのリストを取得します。Name、Status、およびフォルダでフィルターできます。
SELECT * FROM LandingPageTemplates WHERE Status = 'draft' SELECT * FROM LandingPageTemplates WHERE FolderId = 1184 AND FolderType = 'Program'
入力された名前、またはターゲットId のランディングページテンプレートのレコードを取得します。
SELECT * FROM LandingPageTemplates WHERE Id = 1234 SELECT * FROM LandingPageTemplates WHERE Name = 'Agenda'
INSERT
新しいLandingPageTemplate を作成するには、最低でもName、FolderId、FolderType、およびTemplateType カラムを指定してください。
INSERT INTO LandingPageTemplates (Description, EnableMunchkin, FolderId, FolderType, Name, TemplateType) VALUES ('Testing Insert', true, 19, 'Folder', 'Test Insert 1', 'guided')
Update
読み取り専用以外のフィールドは、すべて更新可能です。
UPDATE LandingPageTemplates SET Description = 'Testing Update', EnableMunchkin = false, Name = 'Test Update' WHERE Id = 1312
Delete
LandingPageTemplate を削除するには、Id またはName フィールドを指定してください。
DELETE FROM LandingPageTemplates WHERE Id = 1312 DELETE FROM LandingPageTemplates WHERE Name in ('Test1', 'Test2')
Columns
Name | Type | ReadOnly | Filterable | Description |
Id [KEY] | Integer | True | True |
アセットのId。 |
Name | String | False | True |
アセット名。 |
CreatedAt | Datetime | True |
アセットの作成日時。 | |
Description | String | False |
アセットの説明。 | |
EnableMunchkin | Boolean | False |
Whether to enable munchkin on the derived pages.Defaults to true. デフォルト値はtrueです。 | |
FolderId | Integer | False | True |
フォルダのId。 |
FolderType | String | False | True |
フォルダのタイプ。 使用できる値は次のとおりです。Folder, Program |
FolderName | String | False |
フォルダ名。 | |
Status | String | True | True |
ドラフトまたは承認されたバージョンのステータスフィルタ。 使用できる値は次のとおりです。draft, approved |
TemplateType | String | False |
Type of template to create 'guided' or 'freeForm' 使用できる値は次のとおりです。guided, freeForm デフォルト値はfreeFormです。 | |
UpdatedAt | Datetime | True |
アセットが更新された最新日時。 | |
Url | String | True |
Marketo | |
Workspace | String | True |
ワークスペース名。 |