Hi -
I am developing a something which will add users to a UserList. Something like this:
add_emails_op = {
"operand": {"userListId": list_id, "membersList": members},
"operator": "ADD",
}
return list_service.mutateMembers([add_emails_op])
The number of users (aka "members" in the above code) is ~1 million.
First of all is there a maximum number of users which can be added in a single mutateMembers call? And even if there isn't, is there a best practices for perhaps doing the mutate in parts?
Thank you!