Remove 100 "to_user_ids" limit of WebhookV1.
With webhook V1, we have the upper bound of 100 users in "touserids" field for each notification, so when a webhook has too many recipients (that is, more than 100 users are to be set in "touserids" field), we send multiple webhook notification for a single event so "touserids" is kept within 100 users for each notification.
For e.g. if an upload event was to trigger notification to 1000 recipients, we send 10 webhook notifications to the notification url with 100 users embedded in "touserids" field of each notification.
This causes duplicate notifications be sent to notification url although we only want to receive a single notification for a single event. We want this 100 users limit expanded so we can avoid this.

-
AdminModerator (@ Box, Box) commented
With webhook V1, we have the upper bound of 100 users in "to_user_ids" field for each notification, so when a webhook has too many recipients (that is, more than 100 users are to be set in "to_user_ids" field), we send multiple webhook notification for a single event so "to_user_ids" is kept within 100 users for each notification.
For e.g. if an upload event was to trigger notification to 1000 recipients, we send 10 webhook notifications to the notification url with 100 users embedded in "to_user_ids" field of each notification.
This causes duplicate notifications be sent to notification url although we only want to receive a single notification for a single event. We want this 100 users limit expanded so we can avoid this.