I am trying to upload audience members to a Remarketing list using the googleads library in Python. My list a little less than 500k members. When I send the data with email, phone, and address, it always fails with the error below (request id included). I have tried sending the same data with just the email and address and it works. Including a combination of the phone and address together breaks something. I have uploaded several other remarketing lists just fine and did not have the same issues. Please advise what I can do.
This is the way I add members to the list:
mutate_members_add_operation = {
'operand': {
'userListId': [user_list_id],
'membersList': [members_to_upload]
},
'operator': 'ADD'
}
response = user_list_service.mutateMembers([mutate_members_add_operation])
Error:
googleads.soap WARNING: Error summary:
{
"faultMessage":"[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ com.google.ads.api.services.common.error.InternalApiError.<init>(InternalApiErro]",
"requestId":"0005a59e8de66cf70a81ac23ae056f22",
"serviceName":"AdwordsUserListService",
"methodName":"mutateMembers",
"operations":"1",
"responseTime":"12680"
}