Files
Upload images and other files to use in your Pardot emails, forms, and landing pages.
テーブル固有の情報
Select
本製品 はSalesforce Marketing Cloud Account Engagement API を使用して、以下のカラムと演算子で構築されたWHERE 句条件を処理します。その他のフィルタはクライアントサイドで本製品 内部で処理されます。
- Id は '='、'<'、'<='、'>'、'>=' をサポートしています。
- CreatedAt は '='、'<'、'<='、'>'、'>=' をサポートしています。
- UpdatedAt は '='、'<'、'<='、'>'、'>=' をサポートしています。
例えば、次のクエリはサーバーサイドで処理されます。
SELECT * FROM Files WHERE Id = 40 SELECT * FROM Files WHERE UpdatedAt < '2021-12-30T03:16:27-08:00' AND CreatedAt >= '2021-11-12T07:18:56-08:00'
Insert
挿入を実行する際は、次の属性が必須です:Name、FilePath
INSERT INTO Files (Name, FilePath) VALUES ('file1', 'C:\\file1.txt')
Update
Files の更新:
UPDATE Files SET Name = 'testingUpdate', FolderId = '33609' WHERE id = '804969'
Delete
すべてのファイル、またはファイルId を指定して特定のファイルを削除します。
DELETE FROM Files WHERE Id = 10003
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Int64 | True |
Pardot ID of this file. | |
Name | String | False |
Name of the object for identification in Pardot. Uses the name of the file being uploaded if not specified on create. | |
FolderId | Int64 | False |
ID of the folder containing this object. Uses the asset type's uncategorized folder if not specified on create. | |
CampaignId | Int64 | False |
Pardot campaign related to this object. Uses null if not specified on create. | |
VanityUrlPath | String | False |
Vanity URL path (excluding protocol and host). Must be unique for each tracker domain. | |
TrackerDomainId | Int64 | False |
ID of the TrackerDomain to use in the URL for this object. Uses the primary tracker domain for the account if not specified on create. | |
SalesforceId | String | True |
ID of the Salesforce object representing this object. | |
Url | String | True |
URL where the downloadable file can be accessed. | |
Size | Integer | True |
Size (in bytes) of the downloadable file. | |
BitlyIsPersonalized | Boolean | True |
True if the object has a bitly URL that is personalized. | |
BitlyShortUrl | String | True |
Bitly URL if present. | |
VanityUrl | String | True |
Vanity URL if present. | |
IsTracked | Boolean | True |
True if downloads of this file are recorded as visitor activity. | |
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. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
FilePath | String |
This parameter is used only in INSERT operations to upload the content of a file. It should be set to the path of the file including the name. Ex: C:\Users\User\Desktop\test.txt or to the BASE64 encoded content of the file. |