- 公共请求参数
- 公共返回结果
- 接口说明模板
- app-user
- 用户相关接口
- KYC税务表单接口
- 工单相关接口
- 沟通记录相关接口
- 审核相关接口
- KYC资料相关接口
- 通行证相关接口
- 风险等级测评接口
- 银行卡相关接口
- 大额投资者认证接口
- 零售客户行情订阅相关接口
- app-client
- 用户相关接口
- 审核相关接口
- 工单相关接口
- KYC税务表单接口
- 沟通记录相关接口
- KYC资料相关接口(临时保存)
- 通行证相关接口
- 风险等级测评接口
- 银行卡相关接口
- 大额投资者认证接口
- 零售客户行情订阅相关接口
- 交易系统相关接口
- 券商注册
- app-control
- app-report
- app-trading
- app-common
- app-platform
- app-notice
- app-storage
- app-public-fund
- app-order
- app-settle
- app-fund
- notification-center
- app-setting
- app-geography
创建工单
将废弃
POST
/user/work/order
crm-app-user/重构py接口 工单相关接口
接口变更记录#
变更版本 | 变更时间 | 变更人 | 变更内容 | 备注 |
---|---|---|---|---|
V1.0.0 | 2023-10-27 | fain mo | 路由变更:/user/work_order 变更 /user/work/order | |
V1.0.0 | 2023-10-27 | fain mo | 出入参变更:下划线变更驼峰 | |
V1.5.0 | 2024-06-17 | fain mo | 下线 |
请求结构#
1.
2.
公共参数#
签名方法#
1.
公共返回结果#
接口描述#
1.
接口压测#
请求参数
Body 参数application/json
description
string
详情
operationId
string
操作工单id
operationType
string
操作类型
server
string
客服uuid
title
string
标题
type
string
可选
uuid
string
用户uuid
示例
{
"description": null,
"operation_id": "null",
"operation_type": "null",
"server": "Y6656392",
"title": "你是真狠啊,往海里放毒",
"type": "operation",
"uuid": "I3242886"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/user/work/order' \
--header 'Content-Type: application/json' \
--data-raw '{
"description": null,
"operation_id": "null",
"operation_type": "null",
"server": "Y6656392",
"title": "你是真狠啊,往海里放毒",
"type": "operation",
"uuid": "I3242886"
}'
返回响应
🟢200OK
application/json
Body
code
integer
必需
data
object
必需
id
string
主键
uuid
string
uuid
server
string
客服uuid
title
string
标题
description
string
详情
type
string
必需
status
string
必需
operationId
string
操作工单 id
operationType
string
操作类型
createTime
string
创建时间
isDeleted
string
是否删除
msg
string
必需
success
boolean
必需
traceId
string
必需
示例
{
"code": 0,
"data": {
"id": "string",
"uuid": "string",
"server": "string",
"title": "string",
"description": "string",
"type": "string",
"status": "string",
"operationId": "string",
"operationType": "string",
"createTime": "string",
"isDeleted": "string"
},
"msg": "string",
"success": true,
"traceId": "string"
}