- 开发指南
- 开发前必读
- 基本概念介绍
- 回调配置
- 企业微信账号ID安全性全面升级
- 代开发应用安全性升级
- ID转换接口
- unionid与external_userid的关联
- 获取服务商凭证POST
- 基础
- 连接微信
- 办公
- 智慧硬件
获取应用共享信息
POST
/cgi-bin/corpgroup/corp/list_app_share_info
服务端API第三方应用开发企业内部开发
特别注意,对于有敏感权限的应用,需要下级企业确认后才能共享成功,若下级企业未确认,则不会存在于该接口的返回列表
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://qyapi.weixin.qq.com/cgi-bin/corpgroup/corp/list_app_share_info?access_token=' \
--header 'Content-Type: application/json' \
--data-raw '{
"agentid":1111,
"business_type":1,
"corpid":"wwcorp",
"limit":100,
"cursor":"xxxxxx"
}'
响应示例响应示例
{
"errcode": 0,
"errmsg": "ok",
"ending": 0,
"corp_list": [
{
"corpid": "wwcorpid1",
"corp_name": "测试企业1",
"agentid": 1111
},
{
"corpid": "wwcorpid2",
"corp_name": "测试企业2",
"agentid": 1112
}
],
"next_cursor": "next_cursor1111"
}
请求参数
Query 参数
access_token
必需
示例值:
{{accesstoken}}
Body 参数application/json
agentid
integer
必需
business_type
integer
可选
corpid
string
可选
limit
integer
可选
cursor
string
可选
示例
返回响应
🟢200成功
application/json
Body
errcode
integer <int32>
返回码
corp_list
array [object {3}]
应用共享信息
agentid
integer <int32>
下级企业应用id
corpid
string
可选
corp_name
string
下级企业名称
errmsg
string
可选
ending
string
必需
next_cursor
string
必需

【企业微信】API开发者 微信交流群
用微信扫右侧二维码,加入【企业微信】API开发者 交流群,互助沟通


修改于 2022-12-06 07:32:46