user_list_operation = UserListOperation()
user_list_operation.remove = f"customers/{customer_id}/userLists/{userListId}"
user_list_response = googleAPI.user_list_service.mutate_user_lists(
customer_id, [user_list_operation]
)
In this code, API returns "Requested entity was not found" message and BAD_RESOURCE_ID error although we are using correct customer id and user list id. Actually it always returns that my userListId is invalid.
Is there a problem like userLIstId format that I should care about when I put this id in?
Any help would be appreciated. Thanks!