BiddingStrategies
Create, Read, Update or Delete auto bidding 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 '='.
- PortfolioBiddingId supports the '=,IN'.
- Type supports the '=,IN'.
For example:
SELECT * FROM BiddingStrategies WHERE AccountId ='1234339' SELECT * FROM BiddingStrategies WHERE AccountId ='1234339' AND PortfolioBiddingId ='88272' SELECT * FROM BiddingStrategies WHERE AccountId ='1234339' AND Type='TARGET_SPEND'
INSERT
Insert can be executed by specifying the AccountId, Type, BiddingStrategyName and TargetRoasBiddingSchemeBidCeiling 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 BiddingStrategies (AccountId, Type, BiddingStrategyName,TargetRoasBiddingSchemeBidCeiling) VALUES('1234339','TARGET_SPEND','Test Bidding','50')
UPDATE
Update can be executed by specifying the AccountId and PortfolioBiddingId in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE BiddingStrategies SET BiddingStrategyName = 'Test', Type = 'TARGET_SPEND', TargetRoasBiddingSchemeBidCeiling = '30' WHERE AccountId = '1234339' AND PortfolioBiddingId = '88272'
DELETE
Delete can be executed by specifying the AccountId and BiddingStrategyId in the WHERE Clause.
For example:
DELETE FROM BiddingStrategies WHERE AccountId = '1234339' AND PortfolioBiddingId = '88272'
Columns
Name | Type | ReadOnly | References | Description |
PortfolioBiddingId [KEY] | Int64 | True |
Portfolio bidding ID. | |
AccountId | Int64 | True |
SearchAdsAccounts.AccountId |
Account ID. |
TargetCpaBiddingSchemeBidCeiling | Int64 | False |
CPC limit. No limits if 0 is set. If type is 'TARGET_CPA', this field is required in ADD operation. | |
TargetCpaBiddingSchemeBidFloor | Int64 | False |
Minimum CPC. Set 0 to deactivate. If type is 'TARGET_CPA', this field is required in ADD operation. | |
TargetCpaBiddingSchemeTargetCpa | Int64 | False |
Target CPA (JPY). If type is 'TARGET_CPA', this field is required in ADD operation. | |
TargetImpressionShareSchemeBidCeiling | Int64 | False |
CPC limit (0-50000). No limits if 0 is set. If type is TARGET_IMPRESSION_SHARE, this field is required in ADD operation. | |
TargetImpressionShareSchemeLocation | String | False |
Specifies search result posting position to achieve the target ratio of impression share. If type is TARGET_IMPRESSION_SHARE, this field is required in ADD operation. 使用できる値は次のとおりです。ANYWHERE_ON_PAGE, TOP_ON_PAGE, ABSOLUTE_TOP_OF_PAGE, UNKNOWN デフォルト値はANYWHERE_ON_PAGEです。 | |
TargetImpressionShareSchemeTargetImpressionShare | Int64 | False |
Target impression share. If type is TARGET_IMPRESSION_SHARE, this field is required in ADD operation. | |
TargetRoasBiddingSchemeBidCeiling | Int64 | False |
CPC limit (0-50000). No limits if 0 is set. If type is 'TARGET_ROAS', this field is required in ADD operation. | |
TargetRoasBiddingSchemeBidFloor | Int64 | False |
Minimum CPC. Set 0 to deactivate. If type is 'TARGET_ROAS', this field is required in ADD operation. | |
TargetRoasBiddingSchemeTargetRoas | String | False |
Target ROAS. ROAS: Return On Average Spend. Setting limit: 0.01%20-%201000.00%EF%BC%881%25-100000%25%29. If type is 'TARGET_ROAS', this field is required in ADD operation. | |
TargetSpendBiddingSchemeBidCeiling | Int64 | False |
Bid amount limit (0-50000). No limits if 0 is set. If type is 'TARGET_SPEND', this field is required in ADD operation. | |
Type | String | False |
Displays the Auto Bidding type. 使用できる値は次のとおりです。TARGET_ROAS, TARGET_SPEND, TARGET_CPA, TARGET_IMPRESSION_SHARE, UNKNOWN | |
TargetMaximizeClicksBiddingSchemeBidCeiling | Int64 | False |
Describes Auto Bidding setting for Maximize Clicks.If type is 'MAXIMIZE_CLICKS', this field is required in ADD operation | |
PortfolioBiddingName | String | False |
Portfolio bidding name(Can set up to 50 characters). |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
ReferenceNumber | String |
This column will be used in Bulk operations to get specific values from the Temp tables. |