View Source WeChat.Work.Contacts.Tag (wechat v0.16.0)

通讯录管理-标签管理

Summary

Types

每个标签都有唯一的标签id - 官方文档

标签名称,长度限制为32个字以内(汉字或英文字母),标签名不可与其他标签重名

Types

@type tag_id() :: integer()

每个标签都有唯一的标签id - 官方文档

在管理后台->“通讯录”->“标签”,选中某个标签,在右上角会有“标签详情”按钮,点击即可看到

@type tag_id_list() :: [tag_id()]
@type tag_name() :: String.t()

标签名称,长度限制为32个字以内(汉字或英文字母),标签名不可与其他标签重名

Functions

Link to this function

add_user(client, agent, tag_id, userid_list, party_id_list)

View Source

增加标签成员 - 官方文档

Link to this function

create(client, agent, tag_name, tag_id \\ nil)

View Source

创建标签 - 官方文档

Link to this function

delete(client, agent, tag_id)

View Source

删除标签 - 官方文档

Link to this function

delete_user(client, agent, tag_id, userid_list, party_id_list)

View Source

删除标签成员 - 官方文档

获取标签列表 - 官方文档

Link to this function

list_user(client, agent, tag_id)

View Source

获取标签成员 - 官方文档

Link to this function

update(client, agent, tag_id, tag_name)

View Source

更新标签名字 - 官方文档