- websocket
- IM客服会话管理
- IM在线用户管理
- 用户会话记录管理
- IM用户消息管理
- IM用户登录
- 首页Controller
- 工单Controller
去回复
POST
/servicedialogue/workorder/reply
请求参数
Header 参数
Authorization
string
可选
默认值:
{{Authorization}}
Body 参数application/json
starterId
string | null
状态
发起人id
keyword
string | null
关键词
status
string | null
状态
handlerId
string | null
状态
处理人id
ids
array[string] | null
可选
targetId
string | null
会话记录id
示例
{
"starterId": "string",
"keyword": "string",
"status": "string",
"handlerId": "string",
"ids": [
"string"
],
"targetId": "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 'http://localhost:8082/robot/servicedialogue/workorder/reply' \
--header 'Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"starterId": "string",
"keyword": "string",
"status": "string",
"handlerId": "string",
"ids": [
"string"
],
"targetId": "string"
}'
返回响应
🟢200成功
application/json
Body
是否成功
code
integer | null
可选
msg
string | null
可选
data
boolean | null
可选
示例
{
"code": 0,
"msg": "",
"data": false
}
修改于 2023-12-05 03:23:57