Lists
Retrieve and modify lists.
テーブル固有の情報
Select
本製品 はSalesforce Marketing Cloud Account Engagement API を使用して、以下のカラムと演算子で構築されたWHERE 句条件を処理します。その他のフィルタはクライアントサイドで本製品 内部で処理されます。
- Id は '='、'<'、'<='、'>'、'>=' をサポートしています。
- CreatedAt は '='、'<'、'<='、'>'、'>=' をサポートしています。
- UpdatedAt は '='、'<'、'<='、'>'、'>=' をサポートしています。
- IsDeleted は'=' をサポートしています。
例えば、次のクエリはサーバーサイドで処理されます。
SELECT * FROM Lists WHERE Id = 40 SELECT * FROM Lists WHERE IsDeleted = 'true' SELECT * FROM Lists WHERE CreatedAt > '01/01/2022'
Insert
挿入を実行する際は、次の属性が必須です:Name
INSERT INTO Lists (Name) VALUES ('name')
Update
Lists 属性を更新します。
UPDATE Lists SET Name = 'newName' WHERE Id = 24143
Delete
すべてのリスト、またはリストId を指定して特定のリストを削除します。
DELETE FROM Lists WHERE Id = 10003
GetDeleted
Pardot のごみ箱にあるリストを取得する場合、次の操作がサポートされています。
GETDELETED FROM Lists
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Int64 | True |
Pardot ID of this list. | |
Name | String | False |
List's name (internal to Pardot). | |
FolderId | Int64 | False |
ID of the folder containing this object. | |
CampaignId | Int64 | False |
Campaigns.Id |
Pardot campaign related to this object. Uses null if not specified on create. |
IsDeleted | Boolean | True |
True if the object is in the recycle bin in Pardot. | |
IsDynamic | Boolean | True |
True if the list is dynamic. | |
IsPublic | Boolean | False |
True if the list is public. | |
Title | String | False |
Title of the list object. | |
Description | String | False |
List's description. | |
CreatedAt | Datetime | True |
The timestamp of when this object was created. | |
UpdatedAt | Datetime | True |
The timestamp of when this object was last updated. | |
CreatedById | Int64 | True |
ID of the individual who created this object. | |
UpdatedById | Int64 | True |
ID of the individual who last updated this object. |