Hi,
Firstly can I say it's great to see a forum where the developers actually reply!
I have a python script that uploads or removes hashed emails to a user list
Adwords_client.GetService('AdwordsUserListService', 'v201809')
mutate_members_operation = {
'operand': {
': google,
'membersList': hashed_email},
'operator': 'REMOVE'}
response = user_list_service.mutateMembers([mutate_members_operation])
Is there a way of getting a response back to say whether the add/delete of users was successful ? And if possible how many records were successfully removed/added?
How would I do this?
Thanks in advance
Nick