BidStrategy
Defines how an ad group or campaign competes in auctions, including bid type, optimization goal, and bid amount.
Declaration
object BidStrategyProperties
| Name | Type | Description |
|---|---|---|
bidStrategyType | BidStrategy.BidStrategyType | The bid strategy type. Values: |
bidStrategyGoal | BidStrategy.BidStrategyGoal | The optimization goal for this bid strategy. Values: |
bid | Money | The bid amount, setting the monetary ceiling for each auction entry. For |
Discussion
The BidStrategy object defines how an ad group or campaign competes in auctions.
You must send bidStrategyType and bidStrategyGoal together and match one of the pairings listed in the properties below, whether creating a bid strategy or updating one. See BidStrategyCreate and BidStrategyUpdate. See AdGroupUpdate.BidStrategy for how ad groups under an auto-bidding campaign can echo the campaign’s bid strategy.
Example
{
"bidStrategyType": "MANUAL_CPT",
"bidStrategyGoal": "TAP",
"bid": {
"amount": "2.50",
"currency": "USD"
}
}