CampaignBudget
Create, Read, Update or Delete the campaign budget.
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 本製品.
- CampaignBudgetId supports the '=,IN'.
- AccountId supports the '='.
For example, the following queries are processed server side:
SELECT * FROM CampaignBudget SELECT * FROM CampaignBudget WHERE CampaignBudgetId = '1975453' SELECT * FROM CampaignBudget WHERE AccountId = '1234339'
INSERT
Insert can be executed by specifying the AccountId, CampaignBudgetName and Amount 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 CampaignBudget (AccountId, CampaignBudgetName, Amount) VALUES (1234339, 'TestYogesh', 1100)
UPDATE
Update can be executed by specifying the CampaignBudgetId and AccountId in the WHERE Clause. The columns that are not read-only can be Updated. Following is an example of how to Update into this table:
UPDATE CampaignBudget SET Amount = 200 WHERE CampaignBudgetId = '1975453' AND AccountId = '1234339'
DELETE
Delete can be executed by specifying the AccountId, CampaignBudgetId in the WHERE Clause.
For example:
DELETE FROM CampaignBudget WHERE AccountId = '1234339' AND CampaignBudgetId = '1975454'
Columns
Name | Type | ReadOnly | References | Description |
CampaignBudgetId [KEY] | Int64 | True |
CampaignBudget ID. | |
AccountId | Int64 | True |
SearchAdsAccounts.AccountId |
Account ID. |
CampaignBudgetName | String | False |
CampaignBudget name. | |
Amount | Int64 | False |
Amount of budget of Campaign. |