Hello,
When I run the query
ad_group_criterion.criterion_id,
ad_group_criterion.type,
user_list.resource_name
FROM ad_group_criterion
WHERE ad_group_criterion.type in ('USER_LIST')
For some results that have an ad_group_criterion.type of USER_LIST I don't get a related user list returned.
For example, I expect
customer {
resource_name: "customers/0000000000"
id: 0000000000
}
campaign {
resource_name: "customers/0000000000/campaigns/11111111111"
id: 11111111111
}
ad_group {
resource_name: "customers/0000000000/adGroups/222222222222"
id: 222222222222
}
ad_group_criterion {
resource_name: "customers/0000000000/adGroupCriteria/222222222222~3333333333"
type: USER_LIST
criterion_id: 3333333333
}
user_list {
resource_name: "customers/0000000000/userLists/44444444444"
id: 44444444444
name: "User List Name"
}
but I get
customer {
resource_name: "customers/0000000000"
id: 0000000000
}
campaign {
resource_name: "customers/0000000000/campaigns/11111111111"
id: 11111111111
}
ad_group {
resource_name: "customers/0000000000/adGroups/222222222222"
id: 222222222222
}
ad_group_criterion {
resource_name: "customers/0000000000/adGroupCriteria/222222222222~3333333333"
type: USER_LIST
criterion_id: 3333333333
}
Why is this, does this mean the related user_list has been removed from the account? Or is there some other issue.