- OpenAPI基本介绍
- 错误码参考表
- 访问频率和并发限制
- 消息订阅
- 获取访问凭据
- 员工管理
- 自定义订单管理
- 客户管理
- 客户积分管理
- 客户标签管理
- 客户画像管理
- 标签库管理
- 群聊管理
- 工单管理
- 销售过程管理
- 聊天记录管理
- 拉新排行榜
- 群裂变
- 群打卡
- 企微任务宝
- 拉新排行榜
- 自定义表单
- 客户转化
- 员工个人群发记录管理
- 渠道码管理
- 素材库管理
- 互动雷达管理
- 自定义侧边栏身份校验
- 有赞订单管理
- 小鹅通订单管理
- 项目管理
- 门店信息
- 人群包
- 客户群发
- 企微朋友圈
- 个人SOP
- 部门管理
- 群标签管理
- 话术库
- 企微数据专区
获取客户自定义字段值列表
GET
/open-api/external_user/remark/custom_field/get
请求参数
Query 参数
external_user_id
string
客户ID
staff_id
string
员工ID
access_token
string
调用接口凭证
默认值:
{{access_token}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.weibanzhushou.com/open-api/external_user/remark/custom_field/get?external_user_id=&staff_id&access_token='
返回响应
🟢200成功
application/json
Body
custom_remark_list
array [object {5}]
必需
field_id
integer
自定义字段ID
field_name
string
自定义字段名称
field_type
string
自定义字段类型
field_value
null
自定义字段值
option_list
array [object {2}] | null
选项列表
errcode
integer
必需
errmsg
string
必需
示例
{
"custom_remark_list": [
{
"field_id": 678,
"field_name": "文本",
"field_type": "text",
"field_value": "文本信息",
"option_list": null
},
{
"field_id": 665,
"field_name": "选项测试",
"field_type": "option_text",
"field_value": null,
"option_list": [
{
"option_id": 655,
"option_name": "23"
},
{
"option_id": 656,
"option_name": "234234"
}
]
},
{
"field_id": 647,
"field_name": "时间",
"field_type": "datetime",
"field_value": null,
"option_list": null
}
],
"errcode": 0,
"errmsg": "ok"
}
🟢200正常返回
修改于 2024-03-05 06:42:28