AdGroupCriterionCustomizer
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 '='.
- CriterionId supports the '=,IN'.
- CustomizerAttributeId supports the '=,IN'.
For example:
SELECT * FROM AdGroupCriterionCustomizer WHERE AccountId = '1234339' SELECT * FROM AdGroupCriterionCustomizer WHERE AccountId = '1234339' AND CriterionId = '823145' SELECT * FROM AdGroupCriterionCustomizer WHERE AccountId = '1234339' AND CriterionId = '823145' AND CustomizerAttributeId = '231458'
INSERT
Insert can be executed by specifying the AccountId, CriterionId, 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 AdGroupCriterionCustomizer (AccountId, CriterionId, CustomizerAttributeId, Value) VALUES (1234339, 2443788943, 510004, 'ABCD')
DELETE
Delete can be executed by specifying the AccountId, CriterionId and CustomizerAttributeId in the WHERE Clause.
For example:
DELETE FROM AdGroupCriterionCustomizer WHERE AccountId = 1234339 AND CriterionId = 2443788943 AND CustomizerAttributeId = 510004
Columns
Name | Type | ReadOnly | References | Description |
AccountId | Int64 | True |
SearchAdsAccounts.AccountId |
Account ID. |
ApprovalStatus | String | True |
Displays Editorial Status. | |
CriterionId | Int64 | False |
Criterion ID. | |
CustomizerAttributeId | Int64 | False |
Customizer Attribute ID. | |
DisapprovalReasonCodes | String | True |
Reject reason on editorial review. | |
Value | String | False |
The attribute value. It will be inserted into the ad for insertion. |