添加跟进记录
POST
/api/v1/customer/add_follow
请求参数
Query 参数
token
string
调用接口凭证
Body 参数application/json
follow_list
array [object {3}]
必需
unionId
string
客户的开放平台unionid
userId
string
成员企业微信员工userid
text
array [object {2}]
可选
示例
{
"follow_list": [
{
"unionId": "string",
"userId": "string",
"text": [
{
"content": "string",
"timestamp": 0
}
]
}
]
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/customer/add_follow?token=' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
errcode
integer
返回码
errmsg
string
对返回码的文本描述内容
follow_list
array [object {3}]
必需
userId
string
成员的企业微信员工id
unionId
string
客户的开放平台id
text
array [object {2}]
可选
示例
{
"errcode": 0,
"errmsg": "string",
"follow_list": [
{
"userId": "string",
"unionId": "string",
"text": [
{
"content": "string",
"timestamp": 0
}
]
}
]
}
修改于 2024-02-08 06:26:20