Hi All,
When we write this query , I am getting all the floodlightActivities for the Advertiser, there are floodlightActivities which can't be see in the REPORT UI, I guess, I am getting all the floodlightActivities for the entire History of the Advertiser.
profile_id = flags.profile_id
advertiser_id = flags.advertiser_id
try:
# Construct the request.
request = service.floodlightActivities().list(
profileId=profile_id, advertiserId=advertiser_id)
while True:
# Execute request and print response.
response = request.execute()
for activity in response['floodlightActivities']:
print ('Found floodlight activity with ID %s and name "%s".'
% (activity['id'], activity['name']))
if response['floodlightActivities'] and response['nextPageToken']:
request = service.floodlightActivities().list_next(request, response)
else:
break
Can someone help me , on this?
I should get only the Visible floodlightActivities seen in report UI.