ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

AdGroupCustomizer

Get,Add or Delete Asset information.

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'.
  • CustomizerAttributeId supports the '=,IN'.
  • CampaignId supports the '=,IN'.

For example:

SELECT * FROM AdGroupCustomizer WHERE AccountId = '1234339'
SELECT * FROM AdGroupCustomizer WHERE AccountId = '1234339' AND AdGroupId = '823145'
SELECT * FROM AdGroupCustomizer WHERE AccountId = '1234339' AND AdGroupId = '823145' AND CustomizerAttributeId = '546821'
SELECT * FROM AdGroupCustomizer WHERE AccountId = '1234339' AND AdGroupId = '823145' AND CustomizerAttributeId = '546821' AND CampaignId = '549456'

INSERT

Insert can be executed by specifying the AccountId, AdGroupId, CustomizerAttributeId, Value 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 AccountCustomizer (AccountId, AdGroupId, CustomizerAttributeId, Value) VALUES (1234339, 304682598, 510004, 'ABCD')

DELETE

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

DELETE FROM AccountCustomizer WHERE AccountId = 1234339 AND AdGroupId = 304682598 AND CustomizerAttributeId = 510004

Columns

Name Type ReadOnly References Description
AccountId Int64 True

SearchAdsAccounts.AccountId

Account ID.

AdGroupId Int64 False

AdGroup ID.

ApprovalStatus String False

Displays Editorial Status.

CustomizerAttributeId Int64 True

Customizer Attribute ID.

CampaignId Int64 True

SearchAdsCampaigns.CampaignId

Campaign ID.

DisapprovalReasonCodes String False

Reject reason on editorial review.

Value String False

The attribute value. It will be inserted into the ad for insertion.

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