- 开发指南
- 开发 前必读
- 基本概念介绍
- 回调配置
- 企业微信账号ID安全性全面升级
- 代开发应用安全性升级
- ID转换接口
- unionid与external_userid的关联
- 获取服务商凭证POST
- 基础
- 连接微信
- 办公
- 智慧硬件
获取订单中的帐号列表
POST
https://qyapi.weixin.qq.com/cgi-bin/license/list_order_account
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/license/list_order_account' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_id" : "XXXXXXXX",
"limit":1000,
"cursor":"xxxx"
}'
响应示例响应示例
{
"errcode": 0,
"errmsg": "ok",
"next_cursor": "xxxx",
"has_more": 1,
"account_list": [
{
"active_code": "code1",
"userid": "XXX",
"type": 1
},
{
"active_code": "code2",
"userid": "XXX",
"type": 2
}
]
}
请求参数
Query 参数
provider_access_token
string
可选
示例值:
ACCESS_TOKEN
Body 参数application/json
order_id
string
订单号
limit
integer
可选
cursor
string
可选
示例
返回响应
🟢200成功
application/json
Body
errcode
integer
错误码
errmsg
string
错误码说明
next_cursor
string
必需
has_more
integer
必需
account_list
array [object {3}]
帐号列表
active_code
string
必需
userid
string
必需
type
integer
必需

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


修改于 2022-12-05 07:01:52