Hi all,
I'm using AdWordsService.v201702.AdwordsUserListService to get the name of my criterias into AUDIENCE_PERFORMANCE_REPORT and I call at the service for each account id, but there is one what is returning a null. The rest of my accounts id is working fine.
This is my code:
var adwordUserListService = (AdwordsUserListService)user.GetService(AdWordsService.v201702.AdwordsUserListService);
var selector = new Selector()
{
fields = new string[]
{
UserList.Fields.Id,
UserList.Fields.Name,
UserList.Fields.Description,
UserList.Fields.ListType
}
};
var userListPage = adwordUserListService.get(selector).entries;
Can someone help me? Please.
Thanks.