Hello
I am using a python script to retrieve removed keywords from an account over a period of time. From what I have been told, CustomerSyncService is the way to go for this. I am using the example from this
page.
The issue seems to be that the output of that script is only returning a notice that changes have occurred without going into further detail. For example:
(CampaignChangeData){
campaignId = xxxxxxxxxx
campaignChangeStatus = "FIELDS_CHANGED"
},
(CampaignChangeData){
campaignId = xxxxxxxxxx
campaignChangeStatus = "FIELDS_CHANGED"
},
(CampaignChangeData){
campaignId = xxxxxxxxxx
campaignChangeStatus = "FIELDS_CHANGED"
},
It is, however made clear on the API doc
page for the response that I should be getting much more information such as removed adgroups and criterion. Is this a bug with the CustomerSyncService at the moment or am I missing something obvious?