AdGroupRetargetingLists
Create, Read, Update or Delete information of target list setting in ad group 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 '='.
- AdGroupId supports the '=,IN'.
- TargetListId supports the '=,IN'.
- BidMultiplier supports the '=,IN'.
- ExcludedType supports the '='.
For example:
SELECT * FROM AdGroupRetargetingLists WHERE AccountId = '1234339' SELECT * FROM AdGroupRetargetingLists WHERE AccountId = '1234339' AND AdGroupId IN ('303133212') SELECT * FROM AdGroupRetargetingLists WHERE AccountId = '1234339' AND TargetListId IN ('634035') SELECT * FROM AdGroupRetargetingLists WHERE AccountId = '1234339' AND BidMultiplier IN ('test') SELECT * FROM AdGroupRetargetingLists WHERE AccountId = '1234339' AND ExcludedType = 'INCLUDED'
INSERT
Insert can be executed by specifying the AccountId, AdGroupId, TargetListId and CampaignId 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 AdGroupRetargetingLists (AccountId, AdGroupId, TargetListId, AdGroupName, CampaignId) VALUES ('1234339', '303133212', '634035', 'TestGroup', '1833923')
UPDATE
Update can be executed by specifying the AccountId, AdGroupId, TargetListId and CampaignId in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE AdGroupRetargetingLists SET AdGroupName = 'TestAdGroupRetargetingLists' WHERE AccountId = '1234339' AND AdGroupId = '303133212' AND CampaignId = '1833923' AND TargetListId = '634035'
DELETE
Delete can be executed by specifying the AccountId, AdGroupId, TargetListId and CampaignId in the WHERE Clause.
For example:
DELETE FROM AdGroupRetargetingLists WHERE AccountId = '1234339' AND TargetListId = '634035' AND AdGroupId = '303133212' AND CampaignId = '1833923'
Columns
Name | Type | ReadOnly | References | Description |
TargetListId [KEY] | Int64 | True |
SearchAdsRetargetingLists.TargetListId |
Target list ID. |
AccountId | Int64 | True |
SearchAdsAccounts.AccountId |
Account ID. |
AdGroupId | Int64 | True |
SearchAdsAdGroups.AdGroupId |
Ad group ID. |
AdGroupName | String | False |
Ad group name. | |
BidMultiplier | String | False |
Maximum CPC increase value. Can be specified between 0.10 to 10.00. When specified '0', the ad will not be delivered. Maximum CPC increase value can be specified up to two decimal places. The default value will be 1.0. | |
CampaignId | Int64 | False |
SearchAdsCampaigns.CampaignId |
Campaign ID. |
CampaignName | String | False |
Campaign name. | |
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 |