Hi,
I just noticed a typo in the bidding scheme definition.
API_VERSION = v201406
googleads version = 1.0.7
Trying to upload a bidding scheme, this request works fine, with "Constained" misspelled
biddingScheme = {
'xsi_type': 'PageOnePromotedBiddingScheme',
'strategyGoal': strategy_goal,
'bidCeiling': {'microAmount':microAmount},
'bidModifier': bid_modifier,
'bidChangesForRaisesOnly': bid_changes_for_raises_only,
'raiseBidWhenBudgetConstained': raise_bid_when_budget_constrained,
'raiseBidWhenLowQualityScore': raise_bid_when_low_quality_score
}
but does not work when changed to "Constrained" (correct spelling) complaining that the fields does not exists.
Response:
[(SharedBiddingStrategy){
biddingScheme =
(PageOnePromotedBiddingScheme){
BiddingScheme.Type = "PageOnePromotedBiddingScheme"
strategyGoal = "PAGE_ONE_PROMOTED"
bidCeiling =
(Money){
ComparableValue.Type = "Money"
microAmount = 4000000
}
bidModifier = 1.20000004768
bidChangesForRaisesOnly = True
raiseBidWhenBudgetConstained = False
raiseBidWhenLowQualityScore = True
}
id = 614000238
name = "DEAFULT_TOP_PAGE_PROMOTED"
status = "ENABLED"
type = "PAGE_ONE_PROMOTED"
}]
I am not sure whether this was fixed in the new release,
Best