Hello,
Your understanding is right, I meant that maximum limit for user list is 500K
members only and all the 500K can be added in a single operation for a single
user list. As one user list can hold only 500k members for your scenario you
need 2 user lists there fore 2 API calls. Hope this cle
Hi Sai --
A little confused by your answer -- when I read the documentation, it seems
more like the operand can only hold 500K users, which implies that with one
mutateMembers operation you can only add 500K members, but you can't you
just run the mutateMembers operation twice on the same User
Hello,
I understand that you are trying to upload up to 1 million members into the
user list. A user list can hold up to 50 members only as per the below
link. So you have to split them into 2 user lists. You can include all members
using a single operation. Also, please refer the customer
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 n