AdGroup.BidStrategy
Defines how this ad group competes in auctions, including bid type, optimization goal, and bid amount.
Declaration
object AdGroup.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 field ties this ad group’s bidding mechanics to its optimization goal, determining how Apple Ads evaluates the ad group’s bids in auctions. The bidStrategyType and bidStrategyGoal fields must be sent together and match one of these pairings: MANUAL_CPT↔TAP, MANUAL_CPM↔IMPRESSION, MAX_CONVERSIONS↔INSTALL, MAX_ENGAGEMENTS↔TAP.
Example
{
"bidStrategy": {
"bidStrategyType": "MANUAL_CPT",
"bidStrategyGoal": "TAP",
"bid": {
"amount": "5.00",
"currency": "USD"
}
}
}