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