CustomRedirects
Track links on your website or third-party site with Pardot custom redirects.
テーブル固有の情報
Select
本製品 はSalesforce Marketing Cloud Account Engagement API を使用して、以下のカラムと演算子で構築されたWHERE 句条件を処理します。その他のフィルタはクライアントサイドで本製品 内部で処理されます。
- Id は '='、'<'、'<='、'>'、'>=' をサポートしています。
- IsDeleted は'=' をサポートしています。
例えば、次のクエリはサーバーサイドで処理されます。
SELECT * FROM CustomRedirects WHERE Id = 40 SELECT * FROM CustomRedirects WHERE IsDeleted = 'true'
Insert
挿入を実行する際は、次の属性が必須です:Name、CampaignId、DestinationUrl。
INSERT INTO CustomRedirects (Name, CampaignId, DestinationUrl) VALUES ('name', '1', 'https://example.com/content.html')
Update
CustomRedirects 属性を更新します。
UPDATE CustomRedirects SET Name = 'newName', FolderId = '527425' WHERE Id = 24143
Delete
すべてのCustomRedirects オブジェクト、またはCustomRedirect ID を指定することで1つのオブジェクトを削除します。
DELETE FROM CustomRedirects WHERE Id = 10003
GetDeleted
Pardot のごみ箱にあるカスタムリダイレクトを取得する場合、次の操作がサポートされています。
GETDELETED FROM CustomRedirects
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Int64 | True |
Pardot ID for this campaign. | |
Name | String | False |
Name of the object for identification in Pardot. | |
CampaignId | Int64 | False |
Pardot Campaign related to this object. | |
DestinationUrl | String | False |
A fully qualified URL. The visitor who clicks the custom redirect is directed to this location. | |
FolderId | Int64 | False |
ID of the folder containing this object. Uses the asset type's uncategorized folder if not specified on create. | |
TrackerDomainId | Int64 | False |
ID of the tracker domain to use in the URL for this object. Uses the primary tracker domain for the account if not specified on create. | |
VanityUrl | String | True |
Fully qualified vanity URL. Includes tracker domain and vanityUrlPath. | |
VanityUrlPath | String | False |
Vanity URL path (excluding protocol and host). Must be unique for each tracker domain. | |
GASource | String | False |
Google Analytics Campaign source. | |
GAMedium | String | False |
Google Analytics Campaign medium. | |
GATerm | String | False |
Google Analytics Campaign keyword. | |
GAContent | String | False |
Google Analytics Campaign content. | |
GACampaign | String | False |
Google Analytics Campaign ID. | |
SalesforceId | String | True |
ID of the Salesforce object representing this object. | |
TrackedUrl | String | True |
Fully qualified tracked URL. Does not include Vanity URL. | |
BitlyIsPersonalized | String | True |
True if a custom Bitly URL was set. | |
BitlyShortUrl | String | True |
If set, a fully qualified Bitly URL. | |
IsDeleted | Boolean | True |
True if the object is in the Pardot recycle bin. | |
CreatedAt | Datetime | True |
The object creation timestamp. | |
UpdatedAt | Datetime | True |
The timestamp of the last update of the object. | |
CreatedById | Int64 | True |
ID of the individual who created this object. | |
UpdatedById | Int64 | True |
ID of the individual who last updated this object. |