"mutateOperations": [
{
"campaignBudgetOperation": {
"create": {
"resourceName": "customers/{{CUSTOMER_ID}}/campaignBudgets/-1",
"name": "My Campaign Budget",
"deliveryMethod": "STANDARD",
"amountMicros": 5000000,
"explicitlyShared": false
}
}
},
{
"campaignOperation": {
"create": {
"resourceName": "customers/{{CUSTOMER_ID}}/campaigns/-2",
"status": "ENABLED",
"advertisingChannelType": "SHOPPING",
"shoppingSetting": {
"merchant_id":"{{MERCHANT_ID}}",
"salesCountry":"MA",
"campaign_priority":2
},
"geoTargetTypeSetting":{
"positiveGeoTargetType": "PRESENCE_OR_INTEREST"
},
"networkSettings": {
"targetGoogleSearch": true,
"targetSearchNetwork": true,
"targetContentNetwork": true,
"targetPartnerSearchNetwork": false
},
"name": "My Stardard Shopping campaign",
"campaignBudget": "customers/{{CUSTOMER_ID}}/campaignBudgets/-1",
"startDate": "2022-11-25",
"endDate": "2022-11-30"
}
}
},
{
"campaignCriterionOperation": {
"create": {
"name": "Campaign Criterion Location",
"campaign":"customers/{{CUSTOMER_ID}}/campaigns/-2",
"location":{
"geoTargetConstant": "2840"
}
}
}
},
{
"adGroupOperation": {
"create": {
"resourceName": "customers/{{CUSTOMER_ID}}/adGroups/-3",
"campaign": "customers/{{CUSTOMER_ID}}/campaigns/-2",
"name": "My Standard ad group",
"status": "ENABLED",
"type": "SHOPPING_PRODUCT_ADS"
}
}
},
{
"adGroupAdOperation": {
"create": {
"adGroup": "customers/{{CUSTOMER_ID}}/adGroups/-3",
"status": "ENABLED",
"ad": {
"name":"My Standard ad",
"shoppingSmartAd":{}
}
}
}
}
]
}
I want to set more than one "Location" in "campaignCriterionOperation", and In documentation there is only object not array to set More than "Location" or "campaignCriterionOperation"
1 - Create campaignCriterionOperation
2- Create
3- CampaignCriterion -> Location
So Please If you can help with that.
Thank you