Hi,
I have a python script to upload some crm based lists.
It was working but now produces the following error
Server raised fault: '[MutateMembersError.INVALID_USER_LIST_ID @ operations[0].o
perand.userListId; trigger:'UserListId: listid']'
^listid is 9 chars long and all numbers.
the mutate members operation looks like:
mutate_members_operation = {
'operand': {
'userListId': user_list_id,
#'dataType': 'EMAIL_SHA256',
'membersList': hashed_emails
},
'operator': addremove
}
where addremove either equals 'ADD' or 'REMOVE', hashed_emails is what it sounds like, as is user_list_id. I am using v201705. Is there anything I am obviously doing wrong?
Thanks
Stephen