添加跟进记录v2
POST
/api/v2/customer/add_follow
请求参数
Query 参数
token
string
调用接口凭证
Body 参数application/json
follow_list
array [object {4}]
必需
imBotId
string
托管账号的句子系统id
imContactId
string
客户的句子系统id
imRoomId
string
群聊的句子系统id
text
array [object {1}]
可选
示例
{
"follow_list": [
{
"imBotId": "string",
"imContactId": "string",
"imRoomId": "string",
"text": [
{
"content": "string"
}
]
}
]
}
示例代码
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/v2/customer/add_follow?token=' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
errcode
integer
返回码
errmsg
string
对返回码的文本描述内容
fail_list
array [object {4}]
失败的数据
imBotId
string
必需
imContactId
string
可选
imRoomId
string
可选
text
array [object {1}]
可选
示例
{
"errcode": 0,
"errmsg": "string",
"fail_list": [
{
"imBotId": "string",
"imContactId": "string",
"imRoomId": "string",
"text": [
{
"content": "string"
}
]
}
]
}
修改于 2025-04-24 10:11:17