Guys, I'm trying to update a Price Extension via API
<https://developers.google.com/adwords/api/docs/guides/extension-settings#price_extensions>
to a specific campaign, but, even passing the `*TargetingCampaignId*`, the
API is not linking extension to that campaign, just to the account. I'm
using the Google Ads Python Library
<https://github.com/googleads/googleads-python-lib>. I`ve already created
an issue on Python Adword SDK Github's repository, but they suggested that
the problem maybe is with the API. The response looks ok (see below).
My payload to the `*extension_settings.mutate*` method is:
[
{
"operator": "SET",
"operand": {
"extensionSetting": {
"extensions": [
{
"priceQualifier": "UP_TO",
"priceExtensionType": "SERVICES",
"language": "pt-BR",
"xsi_type": "PriceFeedItem",
"scheduling": {
"feedItemSchedules": [
{
"dayOfWeek": "SUNDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
},
{
"dayOfWeek": "SATURDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
},
{
"dayOfWeek": "FRIDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
},
{
"dayOfWeek": "THURSDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
},
{
"dayOfWeek": "WEDNESDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
},
{
"dayOfWeek": "TUESDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
},
{
"dayOfWeek": "MONDAY",
"endHour": 23,
"startMinute": "ZERO",
"endMinute": "ZERO",
"startHour": 0
}
]
},
"tableRows": [
{
"description": "Oferta Imperdivel",
"xsi_type": "PriceTableRow",
"price": {
"money": {
"microAmount": 228000000
},
"currencyCode": "BRL"
},
"priceUnit": null,
"header": "De Rio a Brasedlia",
"finalUrls": {
"urls": [
"http://www.maxmilhas.com.br"
]
}
},
{
"description": "Oferta Imperdivel",
"xsi_type": "PriceTableRow",
"price": {
"money": {
"microAmount": 596000000
},
"currencyCode": "BRL"
},
"priceUnit": null,
"header": "De Rio a Fortaleza",
"finalUrls": {
"urls": [
"http://www.maxmilhas.com.br"
]
}
},
{
"description": "Oferta Imperdivel",
"xsi_type": "PriceTableRow",
"price": {
"money": {
"microAmount": 388000000
},
"currencyCode": "BRL"
},
"priceUnit": null,
"header": "De Rio a Porto Alegre",
"finalUrls": {
"urls": [
"http://www.maxmilhas.com.br"
]
}
}
],
"campaignTargeting": {
"TargetingCampaignId": "934720050"
},
"trackingUrlTemplate": ""
}
]
},
"extensionType": "PRICE"
}
}
]
The response that API is (Python object):
(CustomerExtensionSettingReturnValue){
ListReturnValue.Type = "CustomerExtensionSettingReturnValue"
value[] =
(CustomerExtensionSetting){
extensionType = "PRICE"
extensionSetting =
(ExtensionSetting){
extensions[] =
(PriceFeedItem){
feedId = 54897150
feedItemId = 22069494937
status = "ENABLED"
feedType = "PRICE"
scheduling =
(FeedItemScheduling){
feedItemSchedules[] =
(FeedItemSchedule){
dayOfWeek = "MONDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
(FeedItemSchedule){
dayOfWeek = "TUESDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
(FeedItemSchedule){
dayOfWeek = "WEDNESDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
(FeedItemSchedule){
dayOfWeek = "THURSDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
(FeedItemSchedule){
dayOfWeek = "FRIDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
(FeedItemSchedule){
dayOfWeek = "SATURDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
(FeedItemSchedule){
dayOfWeek = "SUNDAY"
startHour = 0
startMinute = "ZERO"
endHour = 23
endMinute = "ZERO"
},
}
campaignTargeting =
(FeedItemCampaignTargeting){
TargetingCampaignId = 934720050
}
ExtensionFeedItem.Type = "PriceFeedItem"
priceExtensionType = "SERVICES"
priceQualifier = "UP_TO"
language = "pt-br"
tableRows[] =
(PriceTableRow){
header = "De Rio a BrasÃlia"
description = "Oferta Imperdivel"
finalUrls =
(UrlList){
urls[] =
"http://www.maxmilhas.com.br",
}
price =
(MoneyWithCurrency){
ComparableValue.Type = "MoneyWithCurrency"
money =
(Money){
ComparableValue.Type = "Money"
microAmount = 228000000
}
currencyCode = "BRL"
}
},
(PriceTableRow){
header = "De Rio a Fortaleza"
description = "Oferta Imperdivel"
finalUrls =
(UrlList){
urls[] =
"http://www.maxmilhas.com.br",
}
price =
(MoneyWithCurrency){
ComparableValue.Type = "MoneyWithCurrency"
money =
(Money){
ComparableValue.Type = "Money"
microAmount = 596000000
}
currencyCode = "BRL"
}
},
(PriceTableRow){
header = "De Rio a Porto Alegre"
description = "Oferta Imperdivel"
finalUrls =
(UrlList){
urls[] =
"http://www.maxmilhas.com.br",
}
price =
(MoneyWithCurrency){
ComparableValue.Type = "MoneyWithCurrency"
money =
(Money){
ComparableValue.Type = "Money"
microAmount = 388000000
}
currencyCode = "BRL"
}
},
},
platformRestrictions = "NONE"
}
},
}
--
--
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
---
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/adwords-api/cf5931d6-cb8f-4293-842c-1ee39f16052f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.