I tried this get query (python wrapper):
selector = {
'fields': ['FinalUrls', 'AdGroupId'],
'predicates': [
{
'field': 'AdGroupId',
'operator': 'EQUALS',
'values': ad_group_id_list
}
]
}
However, I received a 'unexpected erro' in response.
When I change the 'ad_group_id_list' to '[ad_group_id_list[0]]' the query returned the correct response.
Is it possible to filter keywords using a adgroup id list?