- 开发指南
- 开发前必读
- 基本概念介绍
- 回调配置
- 企业微信账号ID安全性全面升级
- 代开发应用安全性升级
- ID转换接口
- unionid与external_userid的关联
- 获取服务商凭证POST
- 基础
- 连接微信
- 办公
- 智慧硬件
客户联系「联系我」管理-获取企业已配置的「联系我」列表
POST
/cgi-bin/externalcontact/list_contact_way
服务端API企业内部开发第三方应用开发
注意,该接口仅可获取2021年7月10日以后创建的「联系我」
原文档地址:
https://open.work.weixin.qq.com/api/doc/92228
https://open.work.weixin.qq.com/api/doc/90000/90135/92572
https://open.work.weixin.qq.com/api/doc/90001/90143/92577
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://qyapi.weixin.qq.com/cgi-bin/externalcontact/list_contact_way?access_token=' \
--header 'Content-Type: application/json' \
--data-raw '{
"start_time": 1622476800,
"end_time": 1625068800,
"cursor": "CURSOR",
"limit": 1000
}'
响应示例响应示例
{
"errcode": 0,
"next_cursor": "string",
"contact_way": [
{
"config_id": "string"
}
],
"errmsg": "string"
}
请求参数
Query 参数
access_token
调用接口凭证
示例值:
{{accesstoken}}
Body 参数application/json
cursor
string
可选
start_time
integer <int32>
可选
end_time
integer <int32>
可选
limit
integer <int32>
可选
示例
返回响应
🟢200