AI智能机器人
  1. 工单Controller
AI智能机器人
  • websocket
    • 用户绑定
    • 用户提问
    • 客服坐席绑定
    • 客服坐席消息
    • 发起留言工单
  • IM客服会话管理
    • 会话列表
      GET
  • IM在线用户管理
    • 在线用户列表
      GET
  • 用户会话记录管理
    • 分页查询询会话记录列表
      GET
    • 查看会话记录
      GET
    • 删除会话记录
      POST
    • 导出会话记录
      POST
  • IM用户消息管理
    • 获取离线消息
      GET
    • 统计离线消息情况
      GET
    • 分页获取用户历史聊天记录
      POST
    • 分页获取robot历史聊天记录
      POST
    • 通过留言工单获取历史聊天记录list
      POST
  • IM用户登录
    • 登录
    • 查看IM连接情况
  • 首页Controller
    • 解决问题情况
    • 今日工单
    • 待办消息
    • 机器人状态
    • 服务评价统计
    • 服务评价分页列表数据
    • 服务评价分页列表数据导出
  • 工单Controller
    • 分页查询询工单列表
      GET
    • 获取工单详细信息
      GET
    • 新增工单
      POST
    • 派单
      POST
    • 删除工单
      POST
    • 分页查询登录人工单列表
      GET
    • 去回复
      POST
    • 完成工单
      POST
    • 钉钉查询客服发起工单列表
      GET
  1. 工单Controller

获取工单详细信息

GET
/servicedialogue/workorder/{id}
获取工单详细信息

请求参数

Path 参数
id
string 
工单主键
必需
Header 参数
Authorization
string 
可选
默认值:
{{Authorization}}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:8082/robot/servicedialogue/workorder/' \
--header 'Authorization: '

返回响应

🟢200成功
application/json
Body
工单视图模型
code
integer  | null 
可选
msg
string  | null 
可选
data
object (WorkOrderVO) 
工单视图模型
可选
createBy
string  | null 
创建者
可选
createId
integer  | null 
创建者Id
可选
createTime
string  | null 
创建时间
可选
updateBy
string  | null 
更新者
可选
updateId
integer  | null 
更新者Id
可选
updateTime
string  | null 
更新时间
可选
isDelete
integer  | null 
可选
删除标志(0代表存在 1代表删除)
id
integer  | null 
主键
可选
title
string  | null 
标题
可选
content
string  | null 
工单内容
可选
pictures
string  | null 
图片
可选
pics
array[object (FileDTO) {2}]  | null 
图片
可选
starterId
integer  | null 
发起人 发起人ID
可选
starter
string  | null 
发起人
可选
avatar
string  | null 
头像
可选
deptName
string  | null 
部门
可选
receiveTime
string  | null 
接收时间
可选
status
string  | null 
状态
可选
handlerId
integer  | null 
处理人 处理人id
可选
handlerName
string  | null 
处理人
可选
handlerAvatar
string  | null 
处理人头像 处理人
可选
handleTime
string  | null 
处理时间
可选
difference
integer  | null 
可选
示例
{
  "code": 0,
  "msg": "",
  "data": {
    "createBy": "",
    "createId": 0,
    "createTime": "",
    "updateBy": "",
    "updateId": 0,
    "updateTime": "",
    "isDelete": 0,
    "id": 0,
    "title": "",
    "content": "",
    "pictures": "",
    "pics": [
      {
        "fileKey": "",
        "url": ""
      }
    ],
    "starterId": 0,
    "starter": "",
    "avatar": "",
    "deptName": "",
    "receiveTime": "",
    "status": "",
    "handlerId": 0,
    "handlerName": "",
    "handlerAvatar": "",
    "handleTime": "",
    "difference": 0
  }
}
修改于 2023-12-05 03:23:57
上一页
分页查询询工单列表
下一页
新增工单
Built with