@@ -56,10 +56,8 @@ def delete(
5656 extra_body : Body | None = None ,
5757 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
5858 ) -> BulkOperation :
59- """Deletes multiple users in a single operation.
60-
61- Accepts up to 100 user IDs to
62- delete and returns a bulk operation that can be queried for progress.
59+ """
60+ Permanently deletes up to 1,000 users at a time.
6361
6462 Args:
6563 user_ids: A list of user IDs.
@@ -95,8 +93,8 @@ def identify(
9593 """Identifies multiple users in a single operation.
9694
9795 Allows creating or updating up
98- to 100 users in a single batch with various properties, preferences, and channel
99- data.
96+ to 1,000 users in a single batch with various properties, preferences, and
97+ channel data.
10098
10199 Args:
102100 users: A list of users.
@@ -130,11 +128,13 @@ def set_preferences(
130128 extra_body : Body | None = None ,
131129 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
132130 ) -> BulkOperation :
133- """Sets preferences for multiple users in a single operation .
131+ """Bulk sets the preferences for up to 1,000 users at a time .
134132
135- Supports either
136- setting the same preferences for multiple users or specific preferences for each
137- user.
133+ The preference
134+ set `:id` can be either `default` or a `tenant.id`. Learn more
135+ about [per-tenant preferences](/preferences/tenant-preferences). Note that this
136+ is a destructive operation and will replace any existing users' preferences with
137+ the preferences sent.
138138
139139 Args:
140140 preferences: A request to set a preference set for a recipient.
@@ -196,10 +196,8 @@ async def delete(
196196 extra_body : Body | None = None ,
197197 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
198198 ) -> BulkOperation :
199- """Deletes multiple users in a single operation.
200-
201- Accepts up to 100 user IDs to
202- delete and returns a bulk operation that can be queried for progress.
199+ """
200+ Permanently deletes up to 1,000 users at a time.
203201
204202 Args:
205203 user_ids: A list of user IDs.
@@ -235,8 +233,8 @@ async def identify(
235233 """Identifies multiple users in a single operation.
236234
237235 Allows creating or updating up
238- to 100 users in a single batch with various properties, preferences, and channel
239- data.
236+ to 1,000 users in a single batch with various properties, preferences, and
237+ channel data.
240238
241239 Args:
242240 users: A list of users.
@@ -270,11 +268,13 @@ async def set_preferences(
270268 extra_body : Body | None = None ,
271269 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
272270 ) -> BulkOperation :
273- """Sets preferences for multiple users in a single operation .
271+ """Bulk sets the preferences for up to 1,000 users at a time .
274272
275- Supports either
276- setting the same preferences for multiple users or specific preferences for each
277- user.
273+ The preference
274+ set `:id` can be either `default` or a `tenant.id`. Learn more
275+ about [per-tenant preferences](/preferences/tenant-preferences). Note that this
276+ is a destructive operation and will replace any existing users' preferences with
277+ the preferences sent.
278278
279279 Args:
280280 preferences: A request to set a preference set for a recipient.
0 commit comments