- 案件排期数据相关接口
- 语音识别相关接口
- 笔录转写
- 笔录相关接口
- 笔录模版
- 文档服务
- 笔录历史记录
- 随心签
- 法庭配置
- 卷宗
- 系统管理
- 应用配置
- 签名
- 服务器硬盘监控
- 一张网对接
- 流媒体配置
- 客户端配置
- Websocket长连接注册协议GET
- 获取客户端keyPOST
- 是否启用法庭客户端配置POST
- 获取法庭客户端配置开关接口POST
获取法庭客户端配置开关接口
开发中
POST
/ecms/ecmsweb/getCourtRoomClientConfigStatus
请求参数
Body 参数application/json
method
string
必需
requestSource
string
必需
data
object
必需
clientType
integer
客户端类型
courtRoomId
string
法庭Id
示例
{
"method": "string",
"requestSource": "string",
"data": {
"clientType": "string",
"courtRoomId": "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://dev-cn.your-api-server.com/ecms/ecmsweb/getCourtRoomClientConfigStatus' \
--header 'Content-Type: application/json' \
--data-raw '{
"method": "string",
"requestSource": "string",
"data": {
"clientType": "string",
"courtRoomId": "string"
}
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
message
string
消息
count
integer
计数
data
object
data数据
whetherEnable
boolean
是否开启
示例
{
"code": 0,
"message": "string",
"count": 0,
"data": {
"whetherEnable": true
}
}
修改于 2024-05-31 06:27:07