Hi, I'm trying to build a Dynamic Remarketing Campaing via API and I need the merchant_id to get the product listing.
I already have access to the customer adwords account, so I'm trying to get the data without asking again for permissions.
but the serviceLinkId is not the one that appears in my merchant center.
This is the code that I'm using:
customer_service = client.GetService('CustomerService', version='v201809')
selector = {
'fields': ['ServiceType'],
'predicates': [
{
'field': 'ServiceType',
'operator': 'EQUALS',
'values': ['MERCHANT_CENTER']
}
]
}
mcc = customer_service.getServiceLinks(selector)
Have there been any changes to the api?
Thanks!