- 开发指南
- 开发前必读
- 基本概念介绍
- 回调配置
- 企业微信账号ID安全性全面升级
- 代开发应用安全性升级
- ID转换接口
- unionid与external_userid的关联
- 获取服务商凭证POST
- 基础
- 连接微信
- 办公
- 智慧硬件
获取成员的激活详情
POST
https://qyapi.weixin.qq.com/cgi-bin/license/get_active_info_by_user
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/license/get_active_info_by_user' \
--header 'Content-Type: application/json' \
--data-raw '{
"corpid": "CORPID",
"userid": "USERID"
}'
响应示例响应示例
{
"errcode": 0,
"errmsg": "ok",
"active_status": 1,
"active_info_list": [
{
"active_code": "code1",
"type": 1,
"userid": "USERID",
"active_time": 1640966400,
"expire_time": 1640966400
},
{
"active_code": "code1",
"type": 2,
"userid": "USERID",
"active_time": 1640966400,
"expire_time": 1640966400
}
]
}
请求参数
Query 参数
provider_access_token
string
可选
示例值:
ACCESS_TOKEN
Body 参数application/json
corpid
string
必需
userid
string
必需
示例
返回响应
🟢200成功
application/json
Body
errcode
integer
错误码
errmsg
string
错误码说明
active_status
integer
必需
active_info_list
array [object {5}]
必需
active_code
string
帐号激活码
type
integer
必需
userid
string
必需
active_time
integer
激活时间
expire_time
integer
过期时间

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


修改于 2022-12-05 07:25:49