CustomizerAttribute
Get, Add or Delete Customizer Attribute 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 '='.
- Type supports the '=,IN'.
For example:
SELECT * FROM CustomizerAttribute WHERE AccountId = '1234339' SELECT * FROM CustomizerAttribute WHERE AccountId = '1234339' AND Type = 'TEXT'
INSERT
Insert can be executed by specifying the AccountId, Name, Type 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 CustomizerAttribute (AccountId, Name, Type) VALUES (1234339, 'Yogesh Mangal', 'TEXT')
DELETE
Delete can be executed by specifying the AccountId and CustomizerAttributeId in the WHERE Clause.
For example:
DELETE FROM CustomizerAttribute WHERE AccountId = 1234339 AND CustomizerAttributeId = 510001
Columns
Name | Type | ReadOnly | References | Description |
AccountId | Integer | True |
SearchAdsAccounts.AccountId |
Account ID. |
CustomizerAttributeId | Integer | False |
Customize Attribute ID. | |
Name | String | False |
Attribute name. | |
Type | String | False |
Represents the type of customizer attribute. |