ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

CampaignRetargetingLists

Create, Read, Update or Delete target list setting in campaign level.

Table Specific Information

Select

The 本製品 will use the Yahoo! Ads API to process WHERE clause conditions built with the following column and operator. The AccountId is required to make a request and the rest of the filter is executed client-side within the 本製品.

  • AccountId supports the '='.
  • CampaignId supports the '=,IN'.
  • TargetListId supports the '=,IN'.
  • ExcludedType supports the '='.

For example:

SELECT * FROM CampaignRetargetingLists WHERE AccountId = '1234339'

SELECT * FROM CampaignRetargetingLists WHERE AccountId = '123436' AND CampaignId = '1833923' AND TargetListId = '634035'

SELECT * FROM CampaignRetargetingLists WHERE AccountId = '123436' AND TargetListId IN ('634035')

INSERT

Insert can be executed by specifying the AccountId, CampaignId and CriterionTargetListTargetListId columns. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table

INSERT INTO CampaignRetargetingLists (AccountId, CampaignId, TargetListId) VALUES ('1234339', '1833923', '634035')

UPDATE

Update can be executed by specifying the AccountId, CampaignId and CriterionTargetListTargetListId in the WHERE Clause. The columns that are not read-only can be Updated. For example:

UPDATE CampaignRetargetingLists SET TargetListName = 'Test' WHERE AccountId = '1234339' AND CampaignId = '1833923' AND TargetListId = '634035'

DELETE

Delete can be executed by specifying the AccountId, CampaignId and TargetListId in the WHERE Clause. For example:

DELETE FROM CampaignRetargetingLists WHERE AccountId = '1234339' AND CampaignId = '1833923' AND TargetListId = '634035'

Columns

Name Type ReadOnly References Description
TargetListId [KEY] Int64 True

SearchAdsRetargetingLists.TargetListId

Target list ID.

AccountId Int64 True

SearchAdsAccounts.AccountId

Account ID.

CampaignId Int64 True

SearchAdsCampaigns.CampaignId

Campaign ID.

BidMultiplier String False

Bid adjustment rate. Can be specified between 0.10 to 10.00. When specified '0', the ad will not be delivered. Bid adjustment rate can be specified up to two decimal places. The default value will be 1.0.

CampaignName String False

Name of campaign.

RetargetingTrackId Int64 False

Retargeting Track ID.

TargetListName String False

Target list name.

ExcludedType String False

the setting type which delivers ads or do not deliver ads.

使用できる値は次のとおりです。INCLUDED, EXCLUDED, UNKNOWN

デフォルト値はINCLUDEDです。

Pseudo-Columns

SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。

Name Type Description
ReferenceNumber String

This column will be used in Bulk operations to get specific values from the Temp tables.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839