ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

BiddingSeasonalityAdjustment

Create, Read, Update or Delete the bidding seasonality adjustment.

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 本製品.

  • BiddingSeasonalityAdjustmentId supports the '=,IN'.
  • AccountId supports the '='.

For example, the following queries are processed server side:

SELECT * FROM BiddingSeasonalityAdjustment
SELECT * FROM BiddingSeasonalityAdjustment WHERE BiddingSeasonalityAdjustmentId = '244'
SELECT * FROM BiddingSeasonalityAdjustment WHERE AccountId = '1234339'

INSERT

Insert can be executed by specifying the AccountId, BiddingSeasonalityAdjustmentName, Devices, StartDateTime, EndDateTime, ConversionRate and CampaignIds 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 BiddingSeasonalityAdjustment (AccountId, BiddingSeasonalityAdjustmentName, Devices, StartDateTime, EndDateTime, ConversionRate, CampaignIds) VALUES (1234339, 'TestByYogesh', 'MOBILE,TABLET', '2023-12-26', '2023-12-28', 4, '2070631,1840749')

UPDATE

Update can be executed by specifying the BiddingSeasonalityAdjustmentId 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 BiddingSeasonalityAdjustment SET Description = 'This is the test description' WHERE BiddingSeasonalityAdjustmentId = '245' AND AccountId = '1234339'

DELETE

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

DELETE FROM BiddingSeasonalityAdjustment WHERE AccountId = '1234339' AND BiddingSeasonalityAdjustmentId = '245'

Columns

Name Type ReadOnly References Description
BiddingSeasonalityAdjustmentId [KEY] Int64 True

Bidding seasonality adjustment ID.

AccountId Int64 True

SearchAdsAccounts.AccountId

Account ID.

BiddingSeasonalityAdjustmentName String False

Bidding seasonality adjustment name.

Description String False

Bidding Seasonality Adjustment description.

Devices String False

It describes target device. The Values are MOBILE,TABLET,DESKTOP,UNKOWN

StartDateTime Datetime False

Start date of rule setting.

EndDateTime Datetime False

End date of rule setting.

ConversionRate Double False

Value to adjust conversion rate. Range limit is 0.1 to 10.

CampaignIds String False

Campaign ID.

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