當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tableau groups.add_user用法及代碼示例


Tableau Server Client (TSC)groups.add_user的用法。

用法

groups.add_user(group_item, user_id):

將用戶添加到指定組。

REST API Add User to Group

參數

名字 說明
group_item group_item 指定要更新的組。
user_id 用戶的標識。

返回

None。

示例

# Adding a user to a group
#
# get the group item
  all_groups, pagination_item = server.groups.get()
  mygroup = all_groups[1]

# The id for Ian is '59a8a7b6-be3a-4d2d-1e9e-08a7b6b5b4ba'

# add Ian to the group
  server.groups.add_user(mygroup, '59a8a7b6-be3a-4d2d-1e9e-08a7b6b5b4ba')





相關用法


注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 groups.add_user。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。