- 开发指南
- 开发前必读
- 基本概念介绍
- 回调配置
- 企业微信账号ID安全性全面升级
- 代开发应用安全性升级
- ID转换接口
- unionid与external_userid的关联
- 获取服务商凭证POST
- 基础
- 连接微信
- 办公
- 智慧硬件
获取企业的帐号列表
POST
https://qyapi.weixin.qq.com/cgi-bin/license/list_actived_account
若为上下游场景,corpid指定的为上游企业,仅返回上游企业激活的账号;若corpid指定为下游企业,若激活码为上游企业分享过来的且已绑定,也会返回。
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/license/list_actived_account' \
--header 'Content-Type: application/json' \
--data-raw '{
"corpid" : "CORPID",
"limit":500,
"cursor":"xxxx"
}'
响应示例响应示例
{
"errcode": 0,
"errmsg": "ok",
"next_cursor": "xxx",
"has_more": 1,
"account_list": [
{
"userid": "user1",
"type": 1,
"expire_time": 1500000000,
"active_time": 1500000000
},
{
"userid": "user2",
"type": 1,
"expire_time": 1500000000,
"active_time": 1500000000
}
]
}
请求参数
Query 参数
provider_access_token
string
可选
示例值:
ACCESS_TOKEN
Body 参数application/json
corpid
string
必需
limit
integer
可选
cursor
string
可选
示例
返回响应
🟢200成功
application/json
Body
errcode
integer
错误码
errmsg
string
错误码说明
next_cursor
string
必需
has_more
integer
是否结束
account_list
array [object {4}]