We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b0c157 commit a8d1ad5Copy full SHA for a8d1ad5
tableauserverclient/server/endpoint/users_endpoint.py
@@ -258,7 +258,16 @@ def _get_groups_for_user(
258
259
def create_users_csv(users: Iterable[UserItem], identity_pool=None) -> bytes:
260
"""
261
- Create a CSV byte string from an Iterable of UserItem objects
+ Create a CSV byte string from an Iterable of UserItem objects. The CSV will
262
+ have the following columns, and no header row:
263
+
264
+ - Username
265
+ - Password
266
+ - Display Name
267
+ - License
268
+ - Admin Level
269
+ - Publish capability
270
+ - Email
271
272
if identity_pool is not None:
273
raise NotImplementedError("Identity pool is not supported in this version")
0 commit comments