We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f096ff + 950f57c commit c02876cCopy full SHA for c02876c
README
@@ -0,0 +1,28 @@
1
+from edo_api import EDOClient
2
+
3
+client = EDOClient(....., 'http://zopen.oc.easyd.cn' )
4
5
+# 公司的基本信息
6
+client.account.get_attribte('') # 得到公司名等各种信息
7
8
+# 得到人员信息
9
+client.org_info.list_users()
10
+client.org_info.new_user()
11
12
+# 站点
13
+client.sites.list_sites()
14
+site = client.get_site('default')
15
16
+# 文档管理
17
+site.files.upload(folder_id, data)
18
19
+# 工作流管理
20
+site.workflows.list_dataitems(workflow_container_id)
21
22
+# 通知
23
+site.notify(obj_id, msg)
24
25
+# 权限
26
27
+# 评论
28
0 commit comments